Timber
1 program
Added 2026-02-08T14:13:46Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 5d1c113e00 · authored 2026-02-08T15:14:28+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
LED Blink
Provenance: commit 5d1c113e00 · authored 2026-02-08T15:14:28+01:00 · agent claude-code · model sonnet · WebSearch disabled
module Main where
import POSIX
-- Simple blink program that toggles an LED
blink :: Time -> Action
blink period = do
led <- new False
after period $ forever $ do
old <- get led
set led (not old)
after period $ return ()
-- Main entry point
root :: RootAction
root = do
blink (sec 1)