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 1a70776 commit f45397aCopy full SHA for f45397a
README.md
@@ -2,6 +2,7 @@
2
A programing language designed to interact with UI's.
3
4
Based off Python syntax, Visualscript is a high-level programming language desinged to interact with ui's.
5
+
6
Example Usage:
7
8
log("Hello world")
src/VisualScript.py
@@ -72,10 +72,20 @@ def artClose():
72
def artSpeed(speed):
73
tur.turtle.speed(speed)
74
return
75
+ def artColor(color):
76
+ tur.turtle.color(color)
77
+ return
78
+ def artKey(function, key):
79
+ tur.turtle.onkey(function, key)
80
81
+ def artSpecial(feature):
82
+ if feature == "stamp":
83
+ tur.turtle.stamp()
84
+ elif feature == "dot":
85
+ tur.turtle.dot()
86
87
88
-
89
custom_features = {
90
91
}
0 commit comments