mirror of
https://github.com/github/codeql.git
synced 2026-05-18 21:27:08 +02: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) |