Ateji PX

1 program Added 2026-02-11T12:59:03Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: AtejiPX
Provenance: commit b5c52da7a6 · authored 2026-02-11T13:59:18+01:00 · agent claude-code · model sonnet

Sources mentioning this language

3 sources · pl_id: pl/ateji-px
LLM (this repo) · 1WikipediaWikidata · Q2868806

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsobject-oriented · pi calculus
Typingstrong, static
Influenced byJava
Licensecommercial, free 30-day Premium Trial & free Edition
Homepagehttp://www.ateji.com/

Related languages

ARexx (0.12)Apex (0.12)APLX (0.12)AFNIX (0.11)Atomo (0.11)

LLM-contributed programs

Parallel Quicksort

Provenance: commit b5c52da7a6 · authored 2026-02-11T13:59:18+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.java · added: 2026-02-11T12:59:03Z
// Parallel Quicksort in Ateji PX
class ParallelQuicksort {
    static void parallelSort(int[] array, int left, int right) {
        if (left < right) {
            int pivotIndex = partition(array, left, right);

            || {
                parallelSort(array, left, pivotIndex - 1);
            ||
                parallelSort(array, pivotIndex + 1, right);
            }
        }
    }

    static int partition(int[] array, int left, int right) {
        int pivot = array[right];
        int i = left - 1;

        for (int j = left; j < right; j++) {
            if (array[j] <= pivot) {
                i++;
                int temp = array[i];
                array[i] = array[j];
                array[j] = temp;
            }
        }

        int temp = array[i + 1];
        array[i + 1] = array[right];
        array[right] = temp;

        return i + 1;
    }

    public static void main(String[] args) {
        int[] data = {64, 34, 25, 12, 22, 11, 90, 88, 45, 50, 33, 17, 29, 71, 82};

        System.out.println("Original array:");
        printArray(data);

        parallelSort(data, 0, data.length - 1);

        System.out.println("\nSorted array:");
        printArray(data);
    }

    static void printArray(int[] array) {
        for (int value : array) {
            System.out.print(value + " ");
        }
        System.out.println();
    }
}

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 Ateji PX (mapped to pl/ateji-px). 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/Ateji PX/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← atari-st-basic ATL →