From d44123cabaa730c778a0e2644c75dbfba6a7ab30 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Fri, 12 Jun 2015 22:34:45 -0700 Subject: 1556 --- html/063list.mu.html | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'html/063list.mu.html') diff --git a/html/063list.mu.html b/html/063list.mu.html index 62b4dfcb..cd1a7b40 100644 --- a/html/063list.mu.html +++ b/html/063list.mu.html @@ -13,13 +13,13 @@ pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; } body { font-family: monospace; color: #eeeeee; background-color: #080808; } * { font-size: 1em; } -.CommentedCode { color: #6c6c6c; } +.muScenario { color: #00af00; } .Comment { color: #8080ff; } .Constant { color: #008080; } .Special { color: #ff6060; } -.Identifier { color: #008080; } +.CommentedCode { color: #6c6c6c; } +.muControl { color: #804000; } .muRecipe { color: #ff8700; } -.muScenario { color: #00af00; } --> @@ -43,31 +43,31 @@ container list [ # result:address:list <- push x:location, in:address:list recipe push [ - default-space:address:array:location <- new location:type, 30:literal - x:location <- next-ingredient - in:address:list <- next-ingredient + default-space:address:array:location <- new location:type, 30:literal + x:location <- next-ingredient + in:address:list <- next-ingredient result:address:list <- new list:type val:address:location <- get-address result:address:list/deref, value:offset val:address:location/deref <- copy x:location next:address:address:list <- get-address result:address:list/deref, next:offset next:address:address:list/deref <- copy in:address:list - reply result:address:list + reply result:address:list ] # result:location <- first in:address:list recipe first [ - default-space:address:array:location <- new location:type, 30:literal - in:address:list <- next-ingredient + default-space:address:array:location <- new location:type, 30:literal + in:address:list <- next-ingredient result:location <- get in:address:list/deref, value:offset - reply result:location + reply result:location ] # result:address:list <- rest in:address:list recipe rest [ - default-space:address:array:location <- new location:type, 30:literal - in:address:list <- next-ingredient + default-space:address:array:location <- new location:type, 30:literal + in:address:list <- next-ingredient result:address:list <- get in:address:list/deref, next:offset - reply result:address:list + reply result:address:list ] scenario list-handling [ -- cgit 1.4.1-2-gfad0