blob: 59de5d69a254fce5db1c3c1903bd094b785e1806 [file] [log] [blame]
Paul Sokolovsky2aa217b2014-02-13 00:36:54 +02001print(exec("def foo(): return 42"))
2print(foo())
3
4d = {}
5exec("def bar(): return 84", d)
6print(d["bar"]())