TreeBASIC
1 program
Added 2026-02-16T17:50:33Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit b339ace9a2 · authored 2026-02-16T18:51:27+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
Fibonacci Sequence Generator
Provenance: commit b339ace9a2 · authored 2026-02-16T18:51:27+01:00 · agent claude-code · model sonnet · WebSearch disabled
SUB main()
DIM message AS STRING
DIM i AS INTEGER
message = "Hello from TreeBASIC!"
PRINT message
PRINT "Counting to 10:"
FOR i = 1 TO 10
PRINT i
NEXT i
PRINT "Fibonacci sequence:"
CALL ShowFibonacci(10)
END SUB
SUB ShowFibonacci(n AS INTEGER)
DIM a AS INTEGER
DIM b AS INTEGER
DIM temp AS INTEGER
DIM i AS INTEGER
a = 0
b = 1
FOR i = 1 TO n
PRINT a
temp = a + b
a = b
b = temp
NEXT i
END SUB