Guido van Robot
1 program
Added 2026-03-17T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: GvR
Provenance: commit 22b4609dfa · authored 2026-03-17T02:34:01+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Staircase Navigation
Provenance: commit 22b4609dfa · authored 2026-03-17T02:34:01+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
define turn_right {
turnleft
turnleft
turnleft
}
define climb_step {
turn_right
move
turnleft
move
}
define descend_step {
turn_right
move
turn_right
move
turnleft
turnleft
}
do 3 times {
climb_step
}
do 3 times {
move
}
do 3 times {
descend_step
}
turnoff