micropython/tests/basics/fun2.py

11 wiersze
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)