Joule
1 program
Added 2026-02-06T12:03:18Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit dace7e0230 · authored 2026-02-06T13:03:54+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/jouleWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | multi-paradigm: object-oriented · distributed · dataflow |
|---|---|
| Typing | untyped |
| Designed by | E. Dean Tribble |
| First appeared | 1996 |
| Influenced by | Concurrent Logic Programming · Actors |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit dace7e0230 · authored 2026-02-06T13:03:54+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Fibonacci sequence generator in Joule
define fib(n: int) : int {
if (n <= 1) {
return n;
} else {
return fib(n - 1) + fib(n - 2);
}
}
// Main program
define main() {
for i in 0..10 {
print(fib(i));
}
}
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.)