mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02: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"]())
|