aboutsummaryrefslogtreecommitdiff
path: root/spec/outputs/literals.lua
blob: 6de54111e06b695408529206cda4f10ad3fed07d (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
local _ = {
	121,
	121.2323,
	121.2323e-1,
	121.2323e13434,
	2323E34,
	0x12323,
	0xfF2323,
	0xabcdef,
	0xABCDEF,
	0XFBC400,
	0x123p-123,
	0xABCP+321,
	0x.1p-111,
	0xABCP-321,
	0x0.1E,
	0xA23p-4,
	0X1.921FB54442D18P+1,
	1,
	8,
	15,
	201,
	.2323,
	.2323e-1,
	.2323e13434,
	1LL,
	1ULL,
	9332LL,
	9332,
	0x2aLL,
	0x2aULL,
	1000000.0000001,
	1234e5678,
	1234E-5678,
	0xDEADBEEF,
	[[ hello world ]],
	[=[ hello world ]=],
	[====[ hello world ]====],
	"another world",
	'what world',
	"\n	hello world\n	",
	'yeah\n	what is going on\n	here is something cool'
}
return nil