Pixilang

1 program Added 2026-02-11T10:30:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 365c474836 · authored 2026-02-11T14:32:17+01:00 · agent claude-code · model sonnet

Sources mentioning this language

2 sources · pl_id: pl/pixilang
LLM (this repo) · 1Wikidata · Q4047012

Extensions claimed by this language

2 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.pixiwikidataprimary974 files
.pixicodewikidataprimary6 files

Related languages

Pixie (0.50)ixi lang (0.44)Minilang (0.33)Slang (0.31)Pocketlang (0.29)

LLM-contributed programs

Sine Wave Audio Generator

Provenance: commit 365c474836 · authored 2026-02-11T14:32:17+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.pixi · added: 2026-02-11T10:30:00Z
// Simple sine wave audio generator
fn audio_callback($stream, $userdata, $channels, $frames, $output_time_in_system_ticks, $in_channels, $latency_in_frames)
{
    $buf = $channels[0]
    $i = 0
    while($i < $frames)
    {
        $val = sin($userdata * 3.14159 * 2 / 44100) * 32767
        $buf[$i] = $val
        $userdata = $userdata + 1
        $i = $i + 1
    }
    ret($userdata)
}

set_audio_callback(audio_callback, 440, 44100, INT16, 1)
start_audio(0)

while(1)
{
    frame(50)
    if get_event() { if EVT[EVT_TYPE] == EVT_QUIT { break } }
}

stop_audio(0)

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 Pixilang (mapped to pl/pixilang). 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/Pixilang/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Pixiedust pixin →