parsing, lexing, some compiling of const
All checks were successful
/ test (push) Successful in 1m1s

This commit is contained in:
Neemek 2025-11-06 23:23:39 +01:00
parent beaa325c7b
commit f54d8304fc
5 changed files with 91 additions and 10 deletions

View file

@ -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"