mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-21 21:15:35 -04:00
7 lines
107 B
Python
7 lines
107 B
Python
print(exec("def foo(): return 42"))
|
|
print(foo())
|
|
|
|
d = {}
|
|
exec("def bar(): return 84", d)
|
|
print(d["bar"]())
|