2022-03-12 18:09:07 +01:00

8 lines
86 B
Plaintext

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