BlitzPlus

1 program Added 2026-02-06T12:00:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Blitz+, Blitz Plus
Provenance: commit 3884335953 · authored 2026-02-06T13:06:00+01:00 · agent claude-code · model sonnet

Sources mentioning this language

4 sources · pl_id: pl/blitzplus
LLM (this repo) · 1PldbWikipediaWikidata · Q143419

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsimperative · object-oriented · modular · reflective
Typingstatic, weak, strong (optional)
Designed byBlitz Research · Mark Sibly
First appeared2004
Influenced byBlitzBasic
Licensezlib License
Homepagehttp://www.blitzbasic.com/

Related languages

Blitz BASIC (0.39)BLITZ (0.32)PLUS (0.26)BLISS (0.24)Blitz3D (0.22)

LLM-contributed programs

Simple Moving Ball Game

Provenance: commit 3884335953 · authored 2026-02-06T13:06:00+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.bb · added: 2026-02-06T12:00:00Z
Graphics 640,480,0,1
SetBuffer BackBuffer()

x = 320
y = 240

While Not KeyDown(1)
    Cls

    If KeyDown(203) Then x = x - 2
    If KeyDown(205) Then x = x + 2
    If KeyDown(200) Then y = y - 2
    If KeyDown(208) Then y = y + 2

    Color 255,0,0
    Oval x-10, y-10, 20, 20, 1

    Color 255,255,255
    Text 10, 10, "Use arrow keys to move. ESC to quit."

    Flip
Wend

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 BlitzPlus (mapped to pl/blitzplus). 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/BlitzPlus/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← BlitzMax Blo →