output file mode is set to input file mode
[ikh.git] / miconf / sample.config
blob35ac5de825476fb5b8779252ed29d6b341ee73b9
1 a = 5
2 b = 200
3 c = "Hello, world!"
4 if a < 100 then
5    d = {x=a, "boo"}
6 else 
7    d = {x=10, "foo"}
8 end
9 function square(x)
10    return x*x
11 end