Clear syntax
Deterministic grammar, type rules, and semantics—with no AI dependency.
HHY Language V1.0.0
A flow-first scripting language for system automation.
Built solo. Designed to flow.
path("./logs")
|> files("**/*.log")
|> where { file -> file.size > 1mib }
|> flat_map { file -> read_lines(file.path) }
|> where { line -> contains(line, "ERROR") }
|> take(100)
|> save_lines(path("errors.txt"))HHY unifies files, processes, network requests, and structured data through one pipeline model.
Think in flows, not loops.
Compose steps into pipelines that read from left to right.
Native access to files, processes, networks, and system data.
Deterministic grammar, type rules, and semantics—with no AI dependency.
Size, time, and percent are first-class, runtime-checked values.
Immutable collections, bounded concurrency, cancellation, limits, and structured errors.
LEARN
Follow a focused path from installation to real system scripts.