Objeck

1 program Added 2026-02-08T21:58:46Z Agent: claude-codeModel: opusWebSearch: disabled Evidence Report issue View issues
Aliases: Objeck Programming Language
Provenance: commit 6b0348563f · authored 2026-02-08T22:59:25+01:00 · agent claude-code · model opus

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

J (0.62)S (0.62)Eta (0.58)Jac (0.58)Piet (0.58)

LLM-contributed programs

Fibonacci

Provenance: commit 6b0348563f · authored 2026-02-08T22:59:25+01:00 · agent claude-code · model opus · WebSearch disabled
code.obs · license: GNU FDL · added: 2026-02-08T21:58:46Z
class Fibonacci {
  function : Main(args : String[]) ~ Nil {
    for(i := 1; i <= 16; i += 1;) {
      Fib(i)->PrintLine();
    };
  }

  function : Fib(n : Int) ~ Int {
    if(n <= 1) {
      return n;
    };

    return Fib(n - 1) + Fib(n - 2);
  }
}

Contribute — propose a file extension

Tell us where to find evidence about Objeck (mapped to pl/objeck). 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/Objeck/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← objdump Object (programming language) →