Christopher Allan Webber 774aad2ca8 defmain macro; handles the whole if __name__ == __main__ / main function dance
Example:

  (defmain [&rest args]
    (print "now we're having a fun time!")
    (print args))

Which outputs:

  $ hy test.hy
  now we're having a fun time!
  (['test.hy'],)

Includes documentation and tests.
2014-04-10 13:58:38 -05:00
..
2014-04-09 20:10:31 +03:00
2013-12-23 14:33:51 +01:00
2014-01-30 21:50:23 +05:30
2014-04-09 20:10:31 +03:00
2014-03-29 14:40:13 -04:00