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/blitzplusWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | imperative · object-oriented · modular · reflective |
|---|---|
| Typing | static, weak, strong (optional) |
| Designed by | Blitz Research · Mark Sibly |
| First appeared | 2004 |
| Influenced by | BlitzBasic |
| License | zlib License |
| Homepage | http://www.blitzbasic.com/ |
Related languages
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
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.)