Vintage BASIC
1 program
Added 2026-03-06T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit a19b884903 · authored 2026-03-06T00:48:56+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
Guess the Number
Provenance: commit a19b884903 · authored 2026-03-06T00:48:56+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
10 REM Guess the number game in Vintage BASIC
20 RANDOMIZE
30 LET S = INT(RND(1) * 100) + 1
40 LET G = 0
50 PRINT "I am thinking of a number between 1 and 100."
60 INPUT "Your guess"; N
70 LET G = G + 1
80 IF N < S THEN PRINT "Too low!" : GOTO 60
90 IF N > S THEN PRINT "Too high!" : GOTO 60
100 PRINT "Correct! You got it in"; G; "guesses."
110 END