wxBasic

1 program Added 2026-03-12T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: wx Basic
Provenance: commit 79b36c0fbd · authored 2026-03-12T00:38:52+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

4 sources · pl_id: pl/wxbasic
LLM (this repo) · 1PldbWikipediaWikidata · Q362361

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.

Designed byDavid Cuny
First appeared2002
LicenseGNU Lesser General Public License
Homepagehttp://wxbasic.net

Related languages

XBasic (0.40)MSX Basic (0.39)MSX-BASIC (0.33)Run BASIC (0.33)Wang BASIC (0.33)

LLM-contributed programs

Bubble Sort

Provenance: commit 79b36c0fbd · authored 2026-03-12T00:38:52+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.bas · added: 2026-03-12T10:00:00Z
' Bubble sort in wxBasic

Sub BubbleSort(a() As Integer, n As Integer)
    Dim i As Integer
    Dim j As Integer
    Dim temp As Integer
    For i = 0 To n - 2
        For j = 0 To n - 2 - i
            If a(j) > a(j + 1) Then
                temp = a(j)
                a(j) = a(j + 1)
                a(j + 1) = temp
            End If
        Next j
    Next i
End Sub

Dim nums(9) As Integer
Dim i As Integer
nums(0) = 64
nums(1) = 34
nums(2) = 25
nums(3) = 12
nums(4) = 22
nums(5) = 11
nums(6) = 90
nums(7) = 55
nums(8) = 44
nums(9) = 7

BubbleSort(nums(), 10)

Print "Sorted:"
For i = 0 To 9
    Print nums(i)
Next i

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 wxBasic (mapped to pl/wxbasic). 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/wxBasic/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← www WY-Anglis →