angch.venice.1.12.34.source-code.shebang-demo.venice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of venice Show documentation
Show all versions of venice Show documentation
Venice, a sandboxed Lisp implemented in Java.
The newest version!
#!/bin/sh
#_ """
# Venice Shebang demo script
# The "run-script.sh" is provided by the installed Venice REPL. It
# starts a Venice interpreter on the REPL environment and runs this
# script.
#
# > chmod +x ./shebang-demo.venice
# > ./shebang-demo.venice 1 2 3
REPL_HOME=/Users/juerg/Desktop/venice/
exec ${REPL_HOME}/run-script.sh "$0" "$@"
"""
(println "Venice Shebang Demo")
(println)
(println "Args:" *ARGV*)
(println "Time:" (time/local-date-time))