Yabasic

1 program Added 2026-02-07T12:00:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: YaBasic
Provenance: commit 30acb11380 · authored 2026-02-07T12:05:53+01:00 · agent claude-code · model sonnet

Sources mentioning this language

3 sources · pl_id: pl/yabasic
LLM (this repo) · 1PldbRosettacode

Related languages

XBasic (0.38)GLBasic (0.36)kBasic (0.36)EndBASIC (0.33)Beta BASIC (0.32)

LLM-contributed programs

Fibonacci Sequence Calculator

Provenance: commit 30acb11380 · authored 2026-02-07T12:05:53+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.yab · added: 2026-02-07T12:00:00Z
// Fibonacci sequence calculator
clear screen
input "How many Fibonacci numbers? " n

a = 0
b = 1

print "Fibonacci sequence:"
print a
print b

for i = 3 to n
    c = a + b
    print c
    a = b
    b = c
next i

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 Yabasic (mapped to pl/yabasic). 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/Yabasic/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← YABALL YABC →