blob: b5608f7a327555f98e06dba9c58059b8aa94ac22 [file] [log] [blame]
#!/usr/bin/env python3
import sys
contents = '''
void print_wrapper(string arg) {
print (arg);
}
'''
with open(sys.argv[1], 'w') as f:
f.write(contents)