Kaydet (Commit) 4165bfb6 authored tarafından Ezio Melotti's avatar Ezio Melotti

#12940: fix cmd example. Patch by Tim Chase.

üst aaa89913
...@@ -247,7 +247,7 @@ immediate playback:: ...@@ -247,7 +247,7 @@ immediate playback::
right(*parse(arg)) right(*parse(arg))
def do_left(self, arg): def do_left(self, arg):
'Turn turtle left by given number of degrees: LEFT 90' 'Turn turtle left by given number of degrees: LEFT 90'
right(*parse(arg)) left(*parse(arg))
def do_goto(self, arg): def do_goto(self, arg):
'Move turtle to an absolute position with changing orientation. GOTO 100 200' 'Move turtle to an absolute position with changing orientation. GOTO 100 200'
goto(*parse(arg)) goto(*parse(arg))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment