blob: 54bfbcda86e2995ca3c4766cf5d1f28096996259 (
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
|
'1>' Generic.Prompt
' ' Text.Whitespace
'io' Name.Namespace
':' Punctuation
'format' Name.Function
'(' Punctuation
'"' Literal.String
'Hello' Literal.String
'\\n' Literal.String.Escape
'"' Literal.String
')' Punctuation
'.' Punctuation
'\n' Text.Whitespace
'Hello\n' Generic.Output
'ok\n' Generic.Output
'2>' Generic.Prompt
' ' Text.Whitespace
'fun' Keyword
'(' Punctuation
'X' Name.Variable
')' Punctuation
' ' Text.Whitespace
'-' Operator
'>' Operator
' ' Text.Whitespace
'X' Name.Variable
' ' Text.Whitespace
'+' Operator
' ' Text.Whitespace
'1' Literal.Number.Integer
' ' Text.Whitespace
'end' Keyword
'.' Punctuation
'\n' Text.Whitespace
'#Fun<erl_eval.6.13229925>\n' Generic.Output
'3>' Generic.Prompt
' ' Text.Whitespace
'123' Literal.Number.Integer
' ' Text.Whitespace
'+' Operator
' ' Text.Whitespace
'234' Literal.Number.Integer
'.' Punctuation
'\n' Text.Whitespace
'357\n' Generic.Output
'4>' Generic.Prompt
' ' Text.Whitespace
'X' Name.Variable
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'Y' Name.Variable
'.' Punctuation
'\n' Text.Whitespace
"* 1: variable 'Y' is unbound\n" Generic.Traceback
'5>' Generic.Prompt
' \n' Text.Whitespace
|