blob: 845c126d0a86964a04ac7fe2f3bebe0a5892db25 (
plain)
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
|
'?' Generic.Prompt
' ' Text.Whitespace
'7' Literal.Number.Integer
' ' Text.Whitespace
'*' Operator
' ' Text.Whitespace
'52' Literal.Number.Integer
';' Punctuation
'\n' Text.Whitespace
'=> 364\n' Generic.Output
'?' Generic.Prompt
' ' Text.Whitespace
'define' Keyword
' ' Text.Whitespace
'variable' Name.Builtin
' ' Text.Whitespace
'*your-variable*' Name.Variable.Global
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'$foo' Name.Constant
';' Punctuation
'\n' Text.Whitespace
'?' Generic.Prompt
' ' Text.Whitespace
'begin' Keyword
'\n' Text.Whitespace
' ' Generic.Prompt
' ' Text.Whitespace
'let' Keyword
' ' Text.Whitespace
'yours' Name
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'"' Literal.String
'apple' Literal.String
'"' Literal.String
';' Punctuation
'\n' Text.Whitespace
' ' Generic.Prompt
' ' Text.Whitespace
'let' Keyword
' ' Text.Whitespace
'mine' Name
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'yours' Name
';' Punctuation
'\n' Text.Whitespace
' ' Generic.Prompt
' ' Text.Whitespace
'mine' Name
' ' Text.Whitespace
'==' Operator
' ' Text.Whitespace
'yours' Name
';' Punctuation
'\n' Text.Whitespace
' ' Generic.Prompt
'end' Keyword
';' Punctuation
'\n' Text.Whitespace
'=> #t\n' Generic.Output
|