Yab

1 program Added 2026-03-11T12:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Yet Another Basic, yab
Provenance: commit 9bc482c558 · authored 2026-03-11T22:31:12+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)
LLM (this repo) · 1

Related languages

Yash (0.37)YAP (0.35)YAP Prolog (0.35)YASM (0.34)Yabasic (0.31)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit 9bc482c558 · authored 2026-03-11T22:31:12+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.yab · added: 2026-03-11T12:00:00Z
// Fibonacci sequence in yab
// Iterative computation of Fibonacci numbers

a = 0
b = 1
print "Fibonacci sequence:"
print a
print b

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

Contribute — propose a file extension

Tell us where to find evidence about Yab (mapped to pl/yab). 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/Yab/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← YAASEL YABALL →