parsing, lexing, some compiling of const
All checks were successful
/ test (push) Successful in 1m1s
All checks were successful
/ test (push) Successful in 1m1s
This commit is contained in:
parent
beaa325c7b
commit
f54d8304fc
5 changed files with 91 additions and 10 deletions
|
|
@ -2,14 +2,14 @@
|
|||
_bell := char(0x07)
|
||||
|
||||
ESC := char(0x1B)
|
||||
CSI := ESC + "["
|
||||
const CSI = ESC + "["
|
||||
|
||||
_reset := CSI + "0m"
|
||||
_bold := CSI + "1m"
|
||||
_faint := CSI + "2m"
|
||||
_italic := CSI + "3m"
|
||||
_underline := CSI + "4m"
|
||||
_slow_blink := CSI + "5m"
|
||||
_rapid_blink := CSI + "6m"
|
||||
_strike := CSI + "9m"
|
||||
_primary_font := CSI + "10m"
|
||||
const _reset = CSI + "0m"
|
||||
const _bold = CSI + "1m"
|
||||
const _faint = CSI + "2m"
|
||||
const _italic = CSI + "3m"
|
||||
const _underline = CSI + "4m"
|
||||
const _slow_blink = CSI + "5m"
|
||||
const _rapid_blink = CSI + "6m"
|
||||
const _strike = CSI + "9m"
|
||||
const _primary_font = CSI + "10m"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue