XION

1 program Added 2026-03-17T05:23:19Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: OpenXION
Provenance: commit e15f2059f0 · authored 2026-03-17T06:23:49+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

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

Related languages

Open Dylan (0.23)OpenAxiom (0.21)Gwion (0.19)Fuzion (0.18)Minion (0.18)

LLM-contributed programs

Primes

Provenance: commit e15f2059f0 · authored 2026-03-17T06:23:49+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
code.xn · added: 2026-03-17T05:23:19Z
#!/usr/bin/xion

function isprime n
    if n < 2 then return false
    repeat with x = 2 to the sqrt of n
        if n mod x == 0 then return false
    end repeat
    return true
end isprime

on primes cnt
    repeat with x = 0 to cnt
        if isprime(x) then
            put x
        end if
    end repeat
end primes

ask "List primes up to:" with "50"
if it is not empty and the result is not "Cancel" then primes it

Contribute — propose a file extension

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