Files
hakorune/apps/nyfmt-poc/pipeline-compact.hako

9 lines
236 B
Plaintext
Raw Normal View History

# PoC example: pipeline style vs canonical nesting
# Target sugar (not yet parsed by runtime):
# result = data |> normalize |> transform |> process
# Canonical form (current Nyash):
local result = process(transform(normalize(data)))