Factorial test.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-02-07 18:29:53 +01:00
parent 6a74bf9e8b
commit 6927c5c038
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 16 additions and 0 deletions

15
tests/factorial_test.aer Normal file
View File

@ -0,0 +1,15 @@
class Program {
function factorial(int $num) {
if($num == 0 || $num == 1)
return 1;
else
return $num * $this->factorial($num - 1);
}
function main() {
int $num = 7;
print('Factorial of ', $num, ' is ', $this->factorial($num), '.');
}
}

1
tests/factorial_test.exp Normal file
View File

@ -0,0 +1 @@
Factorial of 7 is 5040.