blob: 6310f8450dd13cb22ee1411fb0cf5285e563db6f (
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
|
'package' Keyword.Namespace
' ' Text
'main' Name.Other
'\n' Text
'\n' Text
'import' Keyword.Namespace
' ' Text
'"fmt"' Literal.String
'\n' Text
'\n' Text
'func' Keyword.Declaration
' ' Text
'main' Name.Other
'(' Punctuation
')' Punctuation
' ' Text
'{' Punctuation
'\n' Text
' ' Text
'世界' Name.Other
' ' Text
':=' Operator
' ' Text
'"Hello, world!"' Literal.String
'\n' Text
' ' Text
'さようなら' Name.Other
' ' Text
':=' Operator
' ' Text
'"Goodbye, world!"' Literal.String
'\n' Text
' ' Text
'fmt' Name.Other
'.' Punctuation
'Println' Name.Other
'(' Punctuation
'世界' Name.Other
')' Punctuation
'\n' Text
' ' Text
'fmt' Name.Other
'.' Punctuation
'Println' Name.Other
'(' Punctuation
'さようなら' Name.Other
')' Punctuation
'\n' Text
'}' Punctuation
'\n' Text
|