summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/exec1.py
blob: 59de5d69a254fce5db1c3c1903bd094b785e1806 (plain) (blame)
1
2
3
4
5
6
print(exec("def foo(): return 42"))
print(foo())

d = {}
exec("def bar(): return 84", d)
print(d["bar"]())