blob: b5f36f0812180bbd03f526fe3f287a1f0e35720d (
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
|
'def' Keyword
' ' Text.Whitespace
'me' Name.Variable
' ' Text.Whitespace
':=' Operator
' ' Text.Whitespace
'object:' Name.Builtin
' ' Text.Whitespace
'{' Punctuation
'\n ' Text.Whitespace
'def' Keyword
' ' Text.Whitespace
'name' Name.Variable
' ' Text.Whitespace
':=' Operator
' ' Text.Whitespace
'"Kevin"' Literal.String
';' Punctuation
'\n ' Text.Whitespace
'def' Keyword
' ' Text.Whitespace
'sayHello' Name.Variable
'(' Punctuation
'peerName' Name.Variable
')' Punctuation
' ' Text.Whitespace
'{' Punctuation
'\n ' Text.Whitespace
'system' Name.Variable
'.' Operator
'println' Name.Variable
'(' Punctuation
'peerName' Name.Variable
' ' Text.Whitespace
'+' Operator
' ' Text.Whitespace
'" says hello!"' Literal.String
')' Punctuation
';' Punctuation
'\n ' Text.Whitespace
'}' Punctuation
';' Punctuation
'\n' Text.Whitespace
'}' Punctuation
';' Punctuation
'\n' Text.Whitespace
|