From 65361948ca7975553757a0e0df4ac7352413044c Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 14 May 2015 16:04:45 -0700 Subject: 1376 - update github docs --- html/073scenario_screen_test.mu.html | 49 ++++++++++++++++++------------------ 1 file changed, 24 insertions(+), 25 deletions(-) (limited to 'html/073scenario_screen_test.mu.html') diff --git a/html/073scenario_screen_test.mu.html b/html/073scenario_screen_test.mu.html index 0da61050..3213a549 100644 --- a/html/073scenario_screen_test.mu.html +++ b/html/073scenario_screen_test.mu.html @@ -2,7 +2,7 @@ -Mu - 073scenario_screen_test.mu +~/Desktop/s/mu/073scenario_screen_test.mu @@ -14,9 +14,8 @@ pre { white-space: pre-wrap; font-family: monospace; color: #d0d0d0; background- body { font-family: monospace; color: #d0d0d0; background-color: #000000; } * { font-size: 1em; } .Comment { color: #8080ff; } -.Delimiter { color: #c000c0; } +.Constant { color: #008080; } .Special { color: #ff6060; } -.Identifier { color: #008080; } --> @@ -30,33 +29,33 @@ body { font-family: monospace; color: #d0d0d0; background-color: #000000; }
 # To check our support for screens in scenarios, rewrite tests from print.mu
 
-scenario print-character-at-top-left2 [
-  assume-screen 3:literal/width, 2:literal/height
-  run [
-    screen:address <- print-character screen:address, 97:literal  # 'a'
-  ]
-  screen-should-contain [
-    .a  .
-    .   .
-  ]
-]
+scenario print-character-at-top-left2 [
+  assume-screen 3:literal/width, 2:literal/height
+  run [
+    screen:address <- print-character screen:address, 97:literal  # 'a'
+  ]
+  screen-should-contain [
+    .a  .
+    .   .
+  ]
+]
 
-scenario clear-line-erases-printed-characters2 [
-  assume-screen 5:literal/width, 3:literal/height
-  run [
+scenario clear-line-erases-printed-characters2 [
+  assume-screen 5:literal/width, 3:literal/height
+  run [
     # print a character
-    screen:address <- print-character screen:address, 97:literal  # 'a'
+    screen:address <- print-character screen:address, 97:literal  # 'a'
     # move cursor to start of line
-    screen:address <- move-cursor screen:address, 0:literal/row, 0:literal/column
+    screen:address <- move-cursor screen:address, 0:literal/row, 0:literal/column
     # clear line
     screen:address <- clear-line screen:address
-  ]
-  screen-should-contain [
-    .     .
-    .     .
-    .     .
-  ]
-]
+  ]
+  screen-should-contain [
+    .     .
+    .     .
+    .     .
+  ]
+]
 
-- cgit 1.4.1-2-gfad0