diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-04-25 17:57:19 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-04-25 17:57:19 -0700 |
commit | 1323a6bb3a94be9ce42de90f3d38d8a4acb7dc7f (patch) | |
tree | eeed6fdf9c42c075b0ceeb20f114679b59a889aa /shell | |
parent | 8e89dd5a787fcc4c161c491a40cf7ae690c64254 (diff) | |
download | mu-1323a6bb3a94be9ce42de90f3d38d8a4acb7dc7f.tar.gz |
.
Show all builtins now that we have more space.
Diffstat (limited to 'shell')
-rw-r--r-- | shell/global.mu | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/global.mu b/shell/global.mu index a067c168..512e01a0 100644 --- a/shell/global.mu +++ b/shell/global.mu @@ -216,8 +216,9 @@ fn render-primitives screen: (addr screen), xmin: int, ymin: int, xmax: int, yma tmpx <- draw-text-rightward screen, ": stream grapheme -> stream", tmpx, xmax, y, 7/fg=grey, 0x12/bg=almost-black y <- increment var tmpx/eax: int <- copy xmin + tmpx <- draw-text-rightward screen, "fn if while = set def ", tmpx, xmax, y, 0x2a/fg=orange, 0x12/bg=almost-black tmpx <- draw-text-rightward screen, "numbers: ", tmpx, xmax, y, 7/fg=grey, 0x12/bg=almost-black - tmpx <- draw-text-rightward screen, "+ - * / sqrt abs sgn = < > <= >= ", tmpx, xmax, y, 0x2a/fg=orange, 0x12/bg=almost-black + tmpx <- draw-text-rightward screen, "+ - * / sqrt abs sgn < > <= >= ", tmpx, xmax, y, 0x2a/fg=orange, 0x12/bg=almost-black tmpx <- draw-text-rightward screen, "pairs: ", tmpx, xmax, y, 7/fg=grey, 0x12/bg=almost-black tmpx <- draw-text-rightward screen, "car cdr cons", tmpx, xmax, y, 0x2a/fg=orange, 0x12/bg=almost-black } |