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)
Related languages
LLM-contributed programs
Fibonacci
Provenance: commit 6b0348563f · authored 2026-02-08T22:59:25+01:00 · agent claude-code · model opus · WebSearch disabled
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);
}
}