5 lines
89 B
Python
5 lines
89 B
Python
import sys
|
|
|
|
print("EXPORTS")
|
|
for i in range(0, int(sys.argv[1])):
|
|
print("f%d=f" % (i))
|