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-basic
LLM (this repo) · 1PldbWikipediaRosettacodeWikidata · Q2858104

Related languages

ChipmunkBasic (0.84)Casio BASIC (0.33)CAOS (0.32)Run BASIC (0.29)MSX Basic (0.27)

LLM-contributed programs

Number Guessing Game

Provenance: commit 43f020f8c3 · authored 2026-02-11T13:12:38+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.bas · added: 2026-02-11T12:11:45Z
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.)

Contribute — propose a file extension

Tell us where to find evidence about Chipmunk Basic (mapped to pl/chipmunk-basic). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Chipmunk Basic/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Chipish ChipmunkBasic →