aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/tables.moon
blob: 079be35eb3e16bbe0c3bfc6f31521f7870a7ca9c (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184

backpack =
	something:
		yeah: 200
		they: ->
			print "hello"
			yor_feet"small"
		pretty: hair
		gold: hmm
	yow: 1000

	eat: goo
	yeah: dudd


start =
	something: "cold"

bathe =
	on: "fire"

another =
	[4]: 232
	["good food"]: "is the best"

fwip =
	something: hello"what", number: 2323,
	what: yo "momma", "yeah",
	fruit: basket
	nuts: day


frick = hello: "world"

frack, best = hello: "world", rice: 3434, "what"

ya = { 1,2,3, key: 100, 343, "hello", umm: 232 }


x = { 1,2,
	4343, 343 ,343 }


g, p = {
	1,2, nowy: "yes", 3,4,
	hey: 232, another: "day"
}, 234

annother = {
	1,2,3
	3,4,5
	6,7,8
}

yeah = {
	[232]: 3434, "helo"
	ice: "cake"
}

-- confusing stuff...
whatabout = {
	hello world, another
	what, about, now

	hello"world", yeah
	hello "world", yeah
}

x =
	-- yeah
	something: => "hello"
	cool: -- umm
		--so ething
		bed: {
			2323,2323
		}
		red: 2343 -- here
	-- what
	name: (node) => @value node -- here
	-- comment me
-- okay


x = { :something, something: something }

y = {
	:hi, :there, :how, :you
	:thing
}

call_me "hello", :x, :y, :z

t = {
	a: 'a'
	[b]: 'b'
}

xam = {
	hello: 1234
	"hello": 12354
	[[hello]]: 12354
	["hello"]: 12354
	[ [[hello]] ]: 12354
}


kam = {
	hello: 12
	goodcheese:
		"mmm"

	yeah:
		12 + 232

	lets:
		keepit going: true,
			okay: "yeah"

	more:
		{
			1, [x for x=1,10]
		}

	[{"one", "two"}]:
		one_thing =>
}

-- TODO: both of these have undesirable output
keepit going: true,
	okay: "yeah",
	workd: "okay"

thing what:
	"great", no:
		"more"
					okay: 123


-- 
thing what:
	"great", no:
		"more"
_ = okay: 123 -- a anon table


-- 

k = { "hello": "world" }
k = { 'hello': 'world' }
k = { "hello": 'world', "hat": "zat" }

please "hello": "world"
k = "hello": "world", "one": "zone"

f = "one", "two": three, "four"
f = "two": three, "four"
f = { "one", "two": three, "four" }


j = "one", "two": three, "four": five, 6, 7

heroine =
	name: "Christina"
	age: 18
	job: "Princess"
	likes:
		* name: "kittens"
			img: "/image/kittens.png"
		* name: "flower"
			img: "/image/flower.png"
	items:
		* name: "ring"
			amount: 2
		* name: "necklace"
			amount: 1
	status:
		desc: "weak"
		* attribute: "health"
			value: 50
		* attribute: "mana"
			value: 100

nil