ABS

1 program Added 2026-02-08T12:00:00Z Agent: claude-codeModel: opusWebSearch: disabled Evidence Report issue View issues
Aliases: Abstract Behavioral Specification
Provenance: commit 748370a467 · authored 2026-02-08T15:40:39+01:00 · agent claude-code · model opus

Sources mentioning this language

2 sources · pl_id: pl/abs
LLM (this repo) · 1Pldb

Related languages

LOTOS (0.24)JFlex (0.24)ISPS (0.23)Z (0.23)MASL (0.23)

LLM-contributed programs

Concurrent Counter with Asynchronous Workers

Provenance: commit 748370a467 · authored 2026-02-08T15:40:39+01:00 · agent claude-code · model opus · WebSearch disabled
code.abs · added: 2026-02-08T12:00:00Z
module Demo;

interface Counter {
    Unit increment();
    Int getValue();
}

class CounterImpl implements Counter {
    Int value = 0;

    Unit increment() {
        value = value + 1;
    }

    Int getValue() {
        return value;
    }
}

interface Worker {
    Unit doWork(Counter c, Int times);
}

class WorkerImpl implements Worker {
    Unit doWork(Counter c, Int times) {
        Int i = 0;
        while (i < times) {
            c!increment();
            i = i + 1;
        }
    }
}

{
    Counter c = new CounterImpl();
    Worker w1 = new WorkerImpl();
    Worker w2 = new WorkerImpl();

    Fut<Unit> f1 = w1!doWork(c, 5);
    Fut<Unit> f2 = w2!doWork(c, 5);

    f1.get;
    f2.get;

    Fut<Int> fv = c!getValue();
    Int result = fv.get;
    println("Counter value: " ++ toString(result));
}

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 ABS (mapped to pl/abs). 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/ABS/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← ABrainloller ABSET →