mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
6 lines
106 B
Python
6 lines
106 B
Python
import testmodule
|
|
|
|
def writetofile(args):
|
|
with open(args[0], 'w') as f:
|
|
f.write(' '.join(args[1:]))
|