All Downloads are FREE. Search and download functionalities are using the official Maven repository.

angch.venice.1.12.34.source-code.shebang-demo.venice Maven / Gradle / Ivy

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))




© 2015 - 2024 Weber Informatics LLC | Privacy Policy