Chipmunk Basic
1 program
Added 2026-02-11T12:11:45Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 43f020f8c3 · authored 2026-02-11T13:12:38+01:00 · agent claude-code · model sonnet
Sources mentioning this language
5 sources · pl_id:
pl/chipmunk-basicRelated languages
LLM-contributed programs
Number Guessing Game
Provenance: commit 43f020f8c3 · authored 2026-02-11T13:12:38+01:00 · agent claude-code · model sonnet · WebSearch disabled
10 rem Number Guessing Game
20 randomize timer
30 target = int(rnd(1) * 100) + 1
40 attempts = 0
50 print "I'm thinking of a number between 1 and 100."
60 print
70 input "Enter your guess: "; guess
80 attempts = attempts + 1
90 if guess < target then print "Too low! Try again." : goto 70
100 if guess > target then print "Too high! Try again." : goto 70
110 print "Congratulations! You guessed it in "; attempts; " attempts."
120 end
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)