Hi all, Trying to get the command line style syntax working.
Somewhere on StackOverflow someone suggested this way of doing things: module M end if length(ARGS) > 0 && ARGS[1] == "--run" using M # do whatever end however, if I write a for loop like if ... using M for l in readlines(STDIN) end
