libcalc.lua (97B)
1 2 function add(in) 3 return in * 2 4 end 5 6 function square(in) 7 return in * in 8 end 9 10 print("Calculator")