Rash
1 program
Added 2026-02-13T14:06:22Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 7c6031b767 · authored 2026-02-13T15:07:04+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
File Listing with Pipeline
Provenance: commit 7c6031b767 · authored 2026-02-13T15:07:04+01:00 · agent claude-code · model sonnet · WebSearch disabled
#lang rash
;; List files with their sizes
(for ([file (glob "*")])
(printf "~a: ~a bytes\n"
file
(file-size file)))
;; Run a pipeline
|> ls -la |> grep ".rkt"