Skip to content

Commit 8d30351

Browse files
committed
more space
1 parent 7ae65a2 commit 8d30351

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docs/en/functions_parameters.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ We have been using functions with parameters since the beginning of the tutorial
2929

3030

3131
And we can put as many arguments (or parameters) as we want, separating them with commas and giving them different names::
32+
3233
def tilted_line_without_moving(length,angle):
3334
left(angle)
3435
forward(length)
@@ -62,6 +63,7 @@ Solution
6263
for i in range(6):
6364
forward(size)
6465
left(60)
66+
6567
def honeycomb(size,count):
6668
for i in range(count):
6769
hexagon(size)

0 commit comments

Comments
 (0)