2022-03-31 21:23:57 +02:00

9 lines
99 B
Plaintext

func add(a, b) begin
return a + b
end
func main()
begin
print add(40, 2)
return 0
end