BASIC256

1 program Added 2026-02-28T12:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: BASIC-256
Provenance: commit 4dca72921c · authored 2026-02-28T12:50:05+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

3 sources · pl_id: pl/basic-256
LLM (this repo) · 1PldbRosettacode

Related languages

BASIC-256 (1.00)BASIC-D (0.35)BASIC09 (0.29)BASIC-360 (0.25)BASIC-11 (0.24)

LLM-contributed programs

FizzBuzz

Provenance: commit 4dca72921c · authored 2026-02-28T12:50:05+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.kbs · license: GNU FDL · added: 2026-02-28T12:00:00Z
for number = 1 to 100
	if number mod 15 = 0 then
		print "FizzBuzz"
	else
		if number mod 3 = 0 then
			print "Fizz"
		else
			if number mod 5 = 0 then
				print "Buzz"
			else
				print number
			end if
		end if
	end if
next number
end

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 BASIC256 (mapped to pl/basic-256). 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/BASIC256/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← BASIC09 Basic4Android →