FMSLogo
1 program
Added 2026-02-13T10:18:59.975605+00:00
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: MSWLogo
Provenance: commit fd17148074 · authored 2026-02-13T11:20:25+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Recursive Spiral
Provenance: commit fd17148074 · authored 2026-02-13T11:20:25+01:00 · agent claude-code · model sonnet · WebSearch disabled
; Spiral drawing program in FMSLogo
TO SPIRAL :size :angle :increment
IF :size > 200 [STOP]
FORWARD :size
RIGHT :angle
SPIRAL :size + :increment :angle :increment
END
; Clear screen and setup
CLEARSCREEN
PENDOWN
SETPENCOLOR [255 0 0]
; Draw a colorful spiral
SPIRAL 1 91 2