Gambas
1 program
Added 2025-11-02T10:32:05Z
Model: google/gemini-2.5-proTemp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit e09836046a · authored 2025-11-02T11:32:05+01:00 · model google/gemini-2.5-pro
Sources mentioning this language
5 sources · pl_id:
pl/gambasWikipedia 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 | Benoît Minisini |
|---|---|
| First appeared | 1999 |
| Influenced by | Visual Basic · Java |
| License | GNU GPLv2 + |
| Homepage | https://gambaswiki.org/website |
Related languages
LLM-contributed programs
Base Converter GUI
Provenance: commit e09836046a · authored 2025-11-02T11:32:05+01:00 · model google/gemini-2.5-pro · Temp 0.4
' Gambas class file
PUBLIC SUB _new()
FMain.Center
FMain.Resizable = FALSE
END
PUBLIC SUB Form_Open()
txtNumber.SetFocus
END
PUBLIC SUB btnConvert_Click()
DIM sNumber AS String
DIM iBaseFrom AS Integer
DIM iBaseTo AS Integer
DIM vResult AS Variant
sNumber = txtNumber.Text
iBaseFrom = CInt(txtBaseFrom.Text)
iBaseTo = CInt(txtBaseTo.Text)
TRY vResult = CONV(sNumber, iBaseFrom, iBaseTo)
IF ERROR THEN
Message.Error(Error.Text)
RETURN
END IF
txtResult.Text = vResult
END
PUBLIC SUB btnClear_Click()
txtNumber.Clear
txtResult.Clear
txtNumber.SetFocus
END
PUBLIC SUB btnClose_Click()
FMain.Close
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.)