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.
Turtle.js.go
1 parent 1e3d82c commit 62806e0Copy full SHA for 62806e0
Types/Turtle.js/go.js
@@ -0,0 +1,7 @@
1
+function go() {
2
+ const parsedArgs = this.parse.call(this, ...arguments)
3
+ let $this = this
4
+ for (let parsed of parsedArgs) {
5
+ let result = $this[parsed.method](...parsed.arguments)
6
+ }
7
+}
0 commit comments