nimbase/add.nim
joachimschmidt557 7779e36f86 Initial files
2019-03-07 14:10:32 +01:00

6 lines
103 B
Nim

import cligen, sequtils
proc main(integers:seq[int]) =
echo integers.foldl(a + b)
dispatch(main)