OOT

1 program Added 2026-03-12T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Object-Oriented Turing
Provenance: commit e390fcc8af · authored 2026-03-12T13:13:17+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

3 sources · pl_id: pl/object-oriented-turing
LLM (this repo) · 1WikipediaWikidata · Q7075002

Related languages

ZZT-OOP (0.40)Prolog++ (0.36)KOOL (0.33)SCOOP (0.31)SIMPOL (0.30)

LLM-contributed programs

Stack Implementation

Provenance: commit e390fcc8af · authored 2026-03-12T13:13:17+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.oot · added: 2026-03-12T10:00:00Z
class Stack
    export push, pop, isEmpty, top

    var items : array 1..100 of int
    var size : int := 0

    procedure push (item : int)
        size := size + 1
        items(size) := item
    end push

    function pop : int
        const val := items(size)
        size := size - 1
        result val
    end pop

    function top : int
        result items(size)
    end top

    function isEmpty : boolean
        result size = 0
    end isEmpty
end Stack

var s : ^Stack
new Stack, s

s -> push(10)
s -> push(20)
s -> push(30)

put "Top: ", s -> top
put "Pop: ", s -> pop
put "Pop: ", s -> pop
put "Empty? ", s -> isEmpty
put "Pop: ", s -> pop
put "Empty? ", s -> isEmpty

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 OOT (mapped to pl/object-oriented-turing). 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/OOT/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← ooRexx OOTPL →