mirror of
https://github.com/github/codeql.git
synced 2025-12-27 06:06:32 +01:00
6 lines
129 B
Python
6 lines
129 B
Python
import ModuleImportsItself
|
|
|
|
def factorial(n):
|
|
if n <= 0:
|
|
return 1
|
|
return n * ModuleImportsItself.factorial(n - 1) |