Fennel
1 program
Added 2025-10-22T10:12:48Z
Model: meta-llama/llama-3.1-70b-instructTemp: 0.4
Evidence
Report issue
View issues
Aliases: fnl
Provenance: commit 73ba39b20a · authored 2025-10-22T12:12:48+02:00 · model meta-llama/llama-3.1-70b-instruct
Sources mentioning this language
5 sources · pl_id:
pl/fennelExtensions claimed by this language
2 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.fnl | linguist | primary | 59.7K files |
.fnl | pygments | primary | 59.7K files |
Related languages
LLM-contributed programs
Fennel Calculator
Provenance: commit 73ba39b20a · authored 2025-10-22T12:12:48+02:00 · model meta-llama/llama-3.1-70b-instruct · Temp 0.4
use std.io
fn main() {
print("Enter the first number: ")
let a = read_int()
print("Enter the second number: ")
let b = read_int()
print("Enter the operator (+, -, *, /): ")
let op = read_str()
if op == "+" {
print("Result: ", a + b)
} else if op == "-" {
print("Result: ", a - b)
} else if op == "*" {
print("Result: ", a * b)
} else if op == "/" {
print("Result: ", a / b)
} else {
print("Invalid operator")
}
}
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.)