about summary refs log tree commit diff stats
path: root/shell/global.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-04-25 17:57:19 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-04-25 17:57:19 -0700
commit1323a6bb3a94be9ce42de90f3d38d8a4acb7dc7f (patch)
treeeeed6fdf9c42c075b0ceeb20f114679b59a889aa /shell/global.mu
parent8e89dd5a787fcc4c161c491a40cf7ae690c64254 (diff)
downloadmu-1323a6bb3a94be9ce42de90f3d38d8a4acb7dc7f.tar.gz
.
Show all builtins now that we have more space.
Diffstat (limited to 'shell/global.mu')
-rw-r--r--shell/global.mu3
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
 }