about summary refs log tree commit diff stats
path: root/screen.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-17 00:31:55 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-17 00:31:55 -0700
commit08f4628e8b858120fe3547d8e5431d9abfe46bf8 (patch)
tree4d9f1bc0039baefa0e84d9cb3ea6634f4337d342 /screen.mu
parent58a9f7c34e21541f2db90b7fb66f4e92f04780ef (diff)
downloadmu-08f4628e8b858120fe3547d8e5431d9abfe46bf8.tar.gz
3379
Can't use type abbreviations inside 'memory-should-contain'.
Diffstat (limited to 'screen.mu')
-rw-r--r--screen.mu8
1 files changed, 4 insertions, 4 deletions
diff --git a/screen.mu b/screen.mu
index 3400504c..f396c72c 100644
--- a/screen.mu
+++ b/screen.mu
@@ -4,14 +4,14 @@
 # screens.
 def main [
   open-console
-  10:character <- copy 97/a
-  print 0/screen, 10:character/a, 2/red
+  10:char <- copy 97/a
+  print 0/screen, 10:char/a, 2/red
   1:number/raw, 2:number/raw <- cursor-position 0/screen
   wait-for-event 0/console
   clear-screen 0/screen
   move-cursor 0/screen, 0/row, 4/column
-  10:character <- copy 98/b
-  print 0/screen, 10:character
+  10:char <- copy 98/b
+  print 0/screen, 10:char
   wait-for-event 0/console
   move-cursor 0/screen, 0/row, 0/column
   clear-line 0/screen