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.
2 parents ddde1ca + df56765 commit 7728accCopy full SHA for 7728acc
Turtle.types.ps1xml
@@ -8875,7 +8875,7 @@ foreach ($javaScriptProperty in $this.psobject.properties | Sort-Object Name) {
8875
<Value>function teleport(x,y) {
8876
var penState = this.penDown
8877
this.penDown = false
8878
- step(x - this.x, y - this.y)
+ this.step(x - this.x, y - this.y)
8879
this.penDown = penState
8880
return this
8881
}</Value>
Types/Turtle.js/teleport.js
@@ -1,7 +1,7 @@
1
function teleport(x,y) {
2
3
4
5
6
7
}
0 commit comments