com.github.jlangch.venice.setup.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.
#!/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={{INSTALL_PATH}}
exec ${REPL_HOME}/run-script.sh "$0" "$@"
"""
(println "Venice Shebang Demo")
(println)
(println "Args:" *ARGV*)
(println "Time:" (time/local-date-time))