Skip to content

Instantly share code, notes, and snippets.

@tivrfoa
Last active October 14, 2020 07:15
Show Gist options
  • Select an option

  • Save tivrfoa/503c88fb5123b1000c37a3f2832d4773 to your computer and use it in GitHub Desktop.

Select an option

Save tivrfoa/503c88fb5123b1000c37a3f2832d4773 to your computer and use it in GitHub Desktop.
Tests for JBang - Multiple Files
///usr/bin/env jbang "$0" "$@" ; exit $?
class file1 {
public static void main(String[] args) {
System.out.println("I'm file 1");
}
}
///usr/bin/env jbang "$0" "$@" ; exit $?
class file2 {
public static void main(String[] args) {
System.out.println("I'm file 2");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment