Quirrel

1 program Added 2026-02-12T12:41:54Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit b327d7d97a · authored 2026-02-12T13:42:30+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

Squirrel (0.58)Quilt (0.23)Quint (0.23)Quipu (0.23)Esterel (0.20)

LLM-contributed programs

Fibonacci Calculator

Provenance: commit b327d7d97a · authored 2026-02-12T13:42:30+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.nut · added: 2026-02-12T12:41:54Z
// Fibonacci sequence calculator
function fibonacci(n) {
  if (n <= 1)
    return n
  return fibonacci(n - 1) + fibonacci(n - 2)
}

// Print first 10 Fibonacci numbers
for (local i = 0; i < 10; i++) {
  print("fib(" + i + ") = " + fibonacci(i) + "\n")
}

Contribute — propose a file extension

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