HiSoft Basic

1 program Added 2026-03-13T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: HiSoft BASIC, HiBasic
Provenance: commit 4ace50e473 · authored 2026-03-13T05:18:38+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

MBASIC (0.37)Applesoft BASIC (0.35)BASIC-80 (0.32)Nascom BASIC (0.30)TNTBasic (0.29)

LLM-contributed programs

FizzBuzz

Provenance: commit 4ace50e473 · authored 2026-03-13T05:18:38+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.bas · license: GNU FDL · added: 2026-03-13T10:00:00Z
' FizzBuzz in HiSoft Basic for Amiga

DIM i AS INTEGER

FOR i = 1 TO 30
  IF (i MOD 15) = 0 THEN
    PRINT "FizzBuzz"
  ELSEIF (i MOD 3) = 0 THEN
    PRINT "Fizz"
  ELSEIF (i MOD 5) = 0 THEN
    PRINT "Buzz"
  ELSE
    PRINT i
  END IF
NEXT i

Contribute — propose a file extension

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