BALM
1 program
Added 2026-03-17T10:15:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Block And List Manipulation Language
Provenance: commit f808da1383 · authored 2026-03-17T00:50:18+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/balmRelated languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit f808da1383 · authored 2026-03-17T00:50:18+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
; Fibonacci sequence in BALM (Block And List Manipulation Language)
DEFINE FIB(N) =
IF N EQ 0 THEN 0
ELSE IF N EQ 1 THEN 1
ELSE FIB(N-1) + FIB(N-2);
DEFINE PRINTFIBS(I, MAX) =
IF I GT MAX THEN NIL
ELSE BEGIN
PRINT(FIB(I));
PRINTFIBS(I+1, MAX)
END;
PRINTFIBS(0, 10)
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.)