Skip to content

Instantly share code, notes, and snippets.

@timaschew
Created January 6, 2011 23:59
Show Gist options
  • Save timaschew/768876 to your computer and use it in GitHub Desktop.
Save timaschew/768876 to your computer and use it in GitHub Desktop.
hallo
@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