demo_ref_compile2.py:
x = compile('print(55)\nprint(88)', 'test', 'exec') exec(x)
C:\Users\My Name>python demo_compile2.py
55
88