2022-02-21 12:44:43 +01:00

8 lines
86 B
Plaintext

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