Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jmbataller/cd912ac94512150ebe38dd7ad1c90595 to your computer and use it in GitHub Desktop.
Save jmbataller/cd912ac94512150ebe38dd7ad1c90595 to your computer and use it in GitHub Desktop.
Java File Source Code Shebang
#!$JAVA_HOME/bin/java --source 11
public class Factorial {
public static void main(String[] args) {
int n = Integer.parseInt(args[0]);
...
System.out.println(n);
}
}
---
$ ./Factorial 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment