RosettaCodeData/Task/A+B/Elm/a+b.elm
2023-07-01 13:44:08 -04:00

10 lines
210 B
Elm

--To write this function directly run cmd
--Type elm-repl to start
--Next enter this code
sum x y=x+y
--This creates a sum function
--When you enter sum A B
--You get output as A+B : number
--Task done!
--END