Bricklayer
1 program
Added 2026-03-10T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 4e8742f262 · authored 2026-03-10T15:01:00+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Colorful Tower
Provenance: commit 4e8742f262 · authored 2026-03-10T15:01:00+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
(* Build a colorful tower using Bricklayer *)
let
val _ = BL.init(20, 5, 20)
val _ = BL.brick(2, 4, BL.Color.red, (8, 0, 8))
val _ = BL.brick(2, 4, BL.Color.blue, (8, 1, 8))
val _ = BL.brick(2, 4, BL.Color.yellow, (8, 2, 8))
val _ = BL.brick(2, 4, BL.Color.green, (8, 3, 8))
val _ = BL.brick(2, 4, BL.Color.white, (8, 4, 8))
val _ = BL.show()
in () end