mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 10:23:08 +09:00
5 lines
106 B
Python
5 lines
106 B
Python
import testmodule
|
|
|
|
def writetofile(args):
|
|
with open(args[0], 'w') as f:
|
|
f.write(' '.join(args[1:]))
|