parent
6a74bf9e8b
commit
6927c5c038
15
tests/factorial_test.aer
Normal file
15
tests/factorial_test.aer
Normal 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
1
tests/factorial_test.exp
Normal file
@ -0,0 +1 @@
|
||||
Factorial of 7 is 5040.
|
Loading…
Reference in New Issue
Block a user