aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/backcall.moon
blob: 3aedba9c2552ac7e63dcc444ede8df9671663713 (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

{"abc", 123, 998} |> foreach print

{1,2,3} \
	|> map((x)-> x * 2) \
	|> filter((x)-> x > 4) \
	|> reduce(0, (a,b)-> a + b) \
	|> print

[i |> tostring for i = 0,10] |> table.concat(",") |> print

b = 1 + 2 + (4 |> tostring |> print(1) or 123)

if x = 233 |> math.max 998
	print x

with b |> create? "new"
	.value = 123
	print \work!

123 |> f?

"abc" |> f1? |> f2?

c = "abc" |> f1? |> f2?

f = ->
	arg |> x.y?\if

998 |> func2 "abc", 233 |> func0 |> func1
998 |> func0("abc", 233) |> func1 |> func2

1 |> f 2, 3, 4, 5
val(2) |> f 1, _, 3, 4, 5
arr[3] |> f 1, 2, _, 4, 5

a = {"1","2","3"} |> table.concat("") |> tonumber |> f1(1, 2, 3, _) |> f2(1, _, 3)

do
	(x)<- map {1,2,3}
	x * 2

do
	(x)<- map _,{1,2,3}
	x * 2

do
	(x)<- filter _, do
		(x)<- map _,{1,2,3,4}
		x * 2
	x > 2

do
	(data)<- http?.get "ajaxtest"
	body[".result"]\html data
	(processed)<- http.post "ajaxprocess", data
	body[".result"]\append processed
	<- setTimeout 1000
	print "done"

do
	<- syncStatus
	(err,data="nil")<- loadAsync "file.moon"
	if err
		print err
		return
	(codes)<- compileAsync data
	func = loadstring codes
	func!

do
	<- f1
	<- f2
	do
		<- f3
		<- f4
	<- f5
	<- f6
	f7!

do
	{:result,:msg} = do
		(data)<- receiveAsync "filename.txt"
		print data
		(info)<- processAsync data
		check info
	print result,msg

	totalSize = (for file in *files
		(data)<- loadAsync file
		addToCache file,data) |> reduce 0,(a,b)-> a+b

alert "hi"