Oxygen Basic

1 program Added 2026-02-11T12:00:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: OxygenBasic, O2H
Provenance: commit 03d3394318 · authored 2026-02-11T13:55:41+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

OxygenBasic (0.61)RunBasic (0.26)Run BASIC (0.24)Oric BASIC (0.19)thinBasic (0.19)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit 03d3394318 · authored 2026-02-11T13:55:41+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.o2bas · added: 2026-02-11T12:00:00Z
'Fibonacci Sequence Generator
'Displays first 15 Fibonacci numbers

function fibonacci(n as long) as long
  if n <= 1 then
    return n
  else
    return fibonacci(n-1) + fibonacci(n-2)
  end if
end function

print "Fibonacci Sequence:"
print "==================="
for i = 0 to 14
  print "F(" i ") = " fibonacci(i)
next

Contribute — propose a file extension

Tell us where to find evidence about Oxygen Basic (mapped to pl/oxygen_basic). 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/Oxygen Basic/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Oxon OxygenBasic →