mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-27 19:59:07 +00:00
14 lines
206 B
Python
14 lines
206 B
Python
from _erg_int import Int
|
|
from _erg_nat import Nat
|
|
|
|
def int__(i):
|
|
try:
|
|
return Int(i)
|
|
except:
|
|
return None
|
|
|
|
def nat__(i):
|
|
try:
|
|
return Nat(i)
|
|
except:
|
|
return None
|