Skip to content

Instantly share code, notes, and snippets.

@gclover
gclover / scala_shell.sh
Created November 5, 2014 08:38
scala shell
#!/bin/sh
exec scala -classpath "" "$0" "$@"
!#
object ScalaMain {
def main(args: Array[String]) {
println("Hello, Canape Driven ! " + args.toList)
}