add inner (of lists) type, add floor, ceil, and roundd standard functions, and a ton of examples

This commit is contained in:
Neemek 2025-07-22 22:24:12 +02:00
parent 5bcab07681
commit efbe5a9f97
Signed by: neemek
GPG key ID: 28360A8951CD0E9B
20 changed files with 330 additions and 46 deletions

15
lib/honning.ang Normal file
View file

@ -0,0 +1,15 @@
_bell := char(0x07)
ESC := char(0x1B)
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"