tests/pass/hello.lua

changeset 57
3e148db7f933
equal deleted inserted replaced
56:d02c7932cbf2 57:3e148db7f933
1 local a, b = "One", "Deux";
2
3 function pp()
4 local _b = b;
5 a = "Une"
6 local c = "Trois!";
7 local function b()
8 return a, _b, c;
9 end
10 return b;
11 end
12
13 print(pp()())
14
15 print(a)

mercurial