Skip to content

Instantly share code, notes, and snippets.

@jponge
Created December 9, 2011 15:13
Show Gist options
  • Save jponge/1451908 to your computer and use it in GitHub Desktop.
Save jponge/1451908 to your computer and use it in GitHub Desktop.
package hello;
import static fact.Factorial.factorial;
public class Main {
public static void main(String... args) {
System.out.println(factorial(10));
}
}
module hello @1.0 {
requires fact @1.0;
class hello.Main;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment