WLanguage
1 program
Added 2026-02-08T14:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: WLangage, L5G
Provenance: commit a20c78036a · authored 2026-02-08T17:20:39+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/wlanguageRelated languages
LLM-contributed programs
Factorial Function
Provenance: commit a20c78036a · authored 2026-02-08T17:20:39+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Calculate factorial
PROCEDURE Factorial(n is int) : int
IF n <= 1 THEN
RESULT 1
ELSE
RESULT n * Factorial(n - 1)
END
// Main code
nValue is int = 5
Info("Factorial of " + nValue + " is " + Factorial(nValue))
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.)