TEST_FILE = '/test.dat'
msg = 'file write test.\n ok??'
print('writing test')
with open(TEST_FILE, 'w') as f:
   f.write(msg)

