2022-02-13 17:40:20 +01:00

8 lines
86 B
Plaintext

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