mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 03:30:14 +01:00
11 lines
135 B
Python
11 lines
135 B
Python
class A:
|
|
def f(x):
|
|
return x
|
|
def g(y):
|
|
def h(z):
|
|
return x + y + z
|
|
h(y)
|
|
A()
|
|
A.f(1)
|
|
A.g(2)(3)
|