From 4fe9f5e8257770a6b1de1aa94748609acd37f0f6 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Mon, 3 Aug 2015 00:49:38 -0700 Subject: 1925 --- html/063list.mu.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'html/063list.mu.html') diff --git a/html/063list.mu.html b/html/063list.mu.html index 50060a5f..7e0f6e61 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: 1.05em; } +.muControl { color: #c0a020; } .muRecipe { color: #ff8700; } .muScenario { color: #00af00; } .Comment { color: #9090ff; } .Constant { color: #00a0a0; } .Special { color: #ff6060; } .CommentedCode { color: #6c6c6c; } -.muControl { color: #c0a020; } --> @@ -46,10 +46,10 @@ container list [ local-scope x:location <- next-ingredient in:address:list <- next-ingredient - result:address:list <- new list:type - val:address:location <- get-address *result, value:offset + result:address:list <- new list:type + val:address:location <- get-address *result, value:offset *val <- copy x - next:address:address:list <- get-address *result, next:offset + next:address:address:list <- get-address *result, next:offset *next <- copy in reply result ] @@ -58,7 +58,7 @@ container list [ recipe first [ local-scope in:address:list <- next-ingredient - result:location <- get *in, value:offset + result:location <- get *in, value:offset reply result ] @@ -66,7 +66,7 @@ container list [ recipe rest [ local-scope in:address:list <- next-ingredient - result:address:list <- get *in, next:offset + result:address:list <- get *in, next:offset reply result ] -- cgit 1.4.1-2-gfad0 n Morrison <ben@gbmor.dev> 2019-05-27 01:06:50 -0400 changed config format to yaml, commented config file' href='/gbmor/getwtxt/commit/getwtxt.yml?h=v0.4.7&id=daa48539f5ad8b444637f948b98996d35852b1e8'>daa4853 ^
c5cf0e1 ^





daa4853 ^









887c25e ^

62c714a ^

887c25e ^


daa4853 ^


579c0be ^




daa4853 ^









69217dd ^
daa4853 ^























c5cf0e1 ^

daa4853 ^

c5cf0e1 ^
daa4853 ^



c5cf0e1 ^
daa4853 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86