forked from M-Labs/nac3
10 lines
128 B
Python
10 lines
128 B
Python
|
@extern
|
||
|
def output_int32(x: int32):
|
||
|
...
|
||
|
|
||
|
def run() -> int32:
|
||
|
for _ in range(10):
|
||
|
output_int32(_)
|
||
|
_ = 0
|
||
|
|