Initial files

This commit is contained in:
joachimschmidt557 2019-03-07 14:10:32 +01:00
commit 7779e36f86
7 changed files with 47 additions and 0 deletions

9
seq.nim Normal file
View file

@ -0,0 +1,9 @@
import cligen
proc main(last:int, first=1, increment=1) =
var i = first
while i <= last:
echo(i)
i = i + increment
dispatch(main)