Files
TencentOS-tiny/components/language/micropython/tests/basics/fun2.py
2022-09-29 12:10:37 +08:00

11 lines
108 B
Python

# calling a function from a function
def f(x):
print(x + 1)
def g(x):
f(2 * x)
f(4 * x)
g(3)