circuitpython/tests/micropython/native_const_intbig.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
112 B
Python
Raw Normal View History

# check loading constants
2021-03-15 09:57:36 -04:00
@micropython.native
def f():
return 123456789012345678901234567890
2021-03-15 09:57:36 -04:00
print(f())