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/wxbasicWikipedia 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 by | David Cuny |
|---|---|
| First appeared | 2002 |
| License | GNU Lesser General Public License |
| Homepage | http://wxbasic.net |
Related languages
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
' 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.)