Crumb
1 program
Added 2026-02-09T10:08:30Z
Agent: claude-codeModel: opusWebSearch: enabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 1164393802 · authored 2026-02-09T11:10:08+01:00 · agent claude-code · model opus
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Multiplication Table
Provenance: commit 1164393802 · authored 2026-02-09T11:10:08+01:00 · agent claude-code · model opus · WebSearch enabled
table = (map (range 10) {_ y ->
<- (map (range 10) {item x ->
<- (multiply (add x 1) (add y 1))
})
})
print_table = {table ->
(map table {row y ->
(print (reduce (get row 1 (length row)) {acc item i ->
<- (join (string acc) " " (string item))
} (get row 0)) "\n")
})
}
(print_table table)