about summary refs log tree commit diff stats
path: root/lambda-to-mu.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-11-22 11:14:43 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-11-22 11:14:43 -0800
commit93c9862fa74043f2b0fa616fcc28aee66bc05037 (patch)
tree7c1439b100a09c1db34aa51cc5d545ce76cdde89 /lambda-to-mu.mu
parent79cb6ea54e7ef76cf3768ec06a0510296b8ac5e9 (diff)
downloadmu-93c9862fa74043f2b0fa616fcc28aee66bc05037.tar.gz
3681
Couple of fixes to example programs.
Diffstat (limited to 'lambda-to-mu.mu')
-rw-r--r--lambda-to-mu.mu36
1 files changed, 18 insertions, 18 deletions
diff --git a/lambda-to-mu.mu b/lambda-to-mu.mu
index ef9886e3..734fa126 100644
--- a/lambda-to-mu.mu
+++ b/lambda-to-mu.mu
@@ -8,7 +8,7 @@ scenario convert-lambda [
     2:@:char/raw <- copy *1:text/raw
   ]
   memory-should-contain [
-    2:@:char <- [t1 <- multiply b c
+    2:array:character <- [t1 <- multiply b c
 result <- add a t1]
   ]
 ]
@@ -321,7 +321,7 @@ scenario parse-single-letter-atom [
   11:@:char/raw <- copy *s2
   memory-should-contain [
     10 <- 1  # parse result is an atom
-    11:@:char <- [a]
+    11:array:character <- [a]
   ]
 ]
 
@@ -333,7 +333,7 @@ scenario parse-atom [
   11:@:char/raw <- copy *s2
   memory-should-contain [
     10 <- 1  # parse result is an atom
-    11:@:char <- [abc]
+    11:array:character <- [abc]
   ]
 ]
 
@@ -360,8 +360,8 @@ scenario parse-list-of-two-atoms [
     12 <- 1  # result.rest is a pair
     13 <- 1  # result.rest.first is an atom
     14 <- 0  # result.rest.rest is nil
-    20:@:char <- [abc]  # result.first
-    30:@:char <- [def]  # result.rest.first
+    20:array:character <- [abc]  # result.first
+    30:array:character <- [def]  # result.rest.first
   ]
 ]
 
@@ -388,8 +388,8 @@ scenario parse-list-with-extra-spaces [
     12 <- 1  # result.rest is a pair
     13 <- 1  # result.rest.first is an atom
     14 <- 0  # result.rest.rest is nil
-    20:@:char <- [abc]  # result.first
-    30:@:char <- [def]  # result.rest.first
+    20:array:character <- [abc]  # result.first
+    30:array:character <- [def]  # result.rest.first
   ]
 ]
 
@@ -423,9 +423,9 @@ scenario parse-list-of-more-than-two-atoms [
     14 <- 1  # result.rest.rest is a pair
     15 <- 1  # result.rest.rest.first is an atom
     16 <- 0  # result.rest.rest.rest is nil
-    20:@:char <- [abc]  # result.first
-    30:@:char <- [def]  # result.rest.first
-    40:@:char <- [ghi]  # result.rest.rest
+    20:array:character <- [abc]  # result.first
+    30:array:character <- [def]  # result.rest.first
+    40:array:character <- [ghi]  # result.rest.rest
   ]
 ]
 
@@ -450,7 +450,7 @@ scenario parse-nested-list [
     12 <- 1  # result.first.first is an atom
     13 <- 0  # result.first.rest is nil
     14 <- 0  # result.rest is nil
-    20:@:char <- [abc]  # result.first.first
+    20:array:character <- [abc]  # result.first.first
   ]
 ]
 
@@ -480,8 +480,8 @@ scenario parse-nested-list-2 [
     13 <- 0  # result.first.rest is nil
     14 <- 1  # result.rest.first is an atom
     15 <- 0  # result.rest.rest is nil
-    20:@:char <- [abc]  # result.first.first
-    30:@:char <- [def]  # result.rest.first
+    20:array:character <- [abc]  # result.first.first
+    30:array:character <- [def]  # result.rest.first
   ]
 ]
 
@@ -528,8 +528,8 @@ scenario parse-dotted-list-of-two-atoms [
     10 <- 1  # parse result is a pair
     11 <- 1  # result.first is an atom
     12 <- 1  # result.rest is an atom
-    20:@:char <- [abc]  # result.first
-    30:@:char <- [def]  # result.rest
+    20:array:character <- [abc]  # result.first
+    30:array:character <- [def]  # result.rest
   ]
 ]
 
@@ -558,9 +558,9 @@ scenario parse-dotted-list-of-more-than-two-atoms [
     12 <- 1  # result.rest is a pair
     13 <- 1  # result.rest.first is an atom
     14 <- 1  # result.rest.rest is an atom
-    20:@:char <- [abc]  # result.first
-    30:@:char <- [def]  # result.rest.first
-    40:@:char <- [ghi]  # result.rest.rest
+    20:array:character <- [abc]  # result.first
+    30:array:character <- [def]  # result.rest.first
+    40:array:character <- [ghi]  # result.rest.rest
   ]
 ]