WIP - standalone: Add vararg.py

This commit is contained in:
David Mak 2024-07-09 14:48:30 +08:00
parent 1a31a50b8a
commit 54ffce91fe

View File

@ -0,0 +1,11 @@
def f(*args: int32):
pass
def run() -> int32:
f()
f(1)
f(1, 2)
f(1, 2, 3)
return 0