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

Related languages

FreeBASIC (0.57)True BASIC (0.44)TrueBasic (0.44)thinBasic (0.38)XBasic (0.36)

LLM-contributed programs

Fibonacci Sequence Generator

Provenance: commit b339ace9a2 · authored 2026-02-16T18:51:27+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.bas · added: 2026-02-16T17:50:33Z
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

Contribute — propose a file extension

Tell us where to find evidence about TreeBASIC (mapped to pl/treebasic). 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/TreeBASIC/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Tree-sitter Query Treebrainfuck →