Created
December 9, 2011 15:13
-
-
Save jponge/1451908 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package hello; | |
import static fact.Factorial.factorial; | |
public class Main { | |
public static void main(String... args) { | |
System.out.println(factorial(10)); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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