Created
January 6, 2011 23:59
-
-
Save timaschew/768876 to your computer and use it in GitHub Desktop.
hallo
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
@Test | |
public void testFunctionWithRecursion() { | |
testResult( | |
"fakult(a) {" + | |
" if (a>1) {" + | |
" a * fakult(a-1)" + | |
" } else {" + | |
" 1" + | |
" }"+ | |
"}" + | |
"fakult(5)", 120); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment