TEST_FILE = '/test.dat'
msg = ''
print('reading test')	#read data from file
with open(TEST_FILE, 'r') as f:
   msg = f.read()
print(msg)

