We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ae65a2 commit 8d30351Copy full SHA for 8d30351
docs/en/functions_parameters.rst
@@ -29,6 +29,7 @@ We have been using functions with parameters since the beginning of the tutorial
29
30
31
And we can put as many arguments (or parameters) as we want, separating them with commas and giving them different names::
32
+
33
def tilted_line_without_moving(length,angle):
34
left(angle)
35
forward(length)
@@ -62,6 +63,7 @@ Solution
62
63
for i in range(6):
64
forward(size)
65
left(60)
66
67
def honeycomb(size,count):
68
for i in range(count):
69
hexagon(size)
0 commit comments