2022-04-10 15:55:56 +02:00

8 lines
86 B
Plaintext

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