-
Notifications
You must be signed in to change notification settings - Fork 3
GoCode Examples
Owen2k6 edited this page Sep 4, 2025
·
1 revision
regprog=Demo
window=Demo=320=180
button=Demo=OK=80=24=120=120=10
println="Click OK to jump to line 10"
goto=999 // (fall through; the button will redirect to 10 when clicked)
// line 10 (count carefully if you paste!)
println="Button clicked — continuing..."
int score = 15
if=score>=10
println="Passed"
println="Done"
regprog=Demo
string note = Hello World
save=note
string note = (will be overwritten)
load=note
println="Loaded: " + note
frontcolor=yellow
input=Enter your name:
string name = (placeholder)
string name = input
frontcolor=green
println="Hi, " + name