Estelle

1 program Added 2026-02-11T10:30:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 3655350b0d · authored 2026-02-11T12:47:23+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

Esterel (0.29)Isabelle (0.27)Arendelle (0.25)Cedille (0.20)Essence (0.20)

LLM-contributed programs

Simple Protocol Specification

Provenance: commit 3655350b0d · authored 2026-02-11T12:47:23+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.est · added: 2026-02-11T10:30:00Z
SPECIFICATION SimpleProtocol;

DEFAULT

CHANNEL DataChannel (Sender, Receiver);
  BY Sender: DataPDU;
  BY Receiver: AckPDU;
END;

IP DataPDU;
  sequence: INTEGER;
  data: ARRAY [1..10] OF CHAR;
END;

IP AckPDU;
  sequence: INTEGER;
END;

MODULE Sender ACTIVITY;
  IP:
    OUT DataChannel;
  VAR
    counter: INTEGER;
  BODY
    INIT
      counter := 0;
    TRANS
      FROM Init TO Sending
        PROVIDED counter < 10
        BEGIN
          OUTPUT DataChannel(DataPDU WITH sequence := counter, data := 'Message');
          counter := counter + 1;
        END;
  END;

MODULE Receiver ACTIVITY;
  IP:
    IN DataChannel;
  BODY
    INIT
      ;
    TRANS
      FROM Init TO Init
        WHEN DataChannel(DataPDU)
        BEGIN
          OUTPUT DataChannel(AckPDU WITH sequence := DataPDU.sequence);
        END;
  END;

MODTYPE System;
  IP:
    ;
  BODY
    sender: Sender;
    receiver: Receiver;
    INIT
      CONNECT sender.DataChannel TO receiver.DataChannel;
  END;

END.

Contribute — propose a file extension

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