Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I think you're conflating "chaining function calls together" (aka "threading function calls") with unix pipelines, which are all about running separate programs in parallel & connecting their io streams together (with the kernel regulating the flow of data between them).

Threading functions together is basically about being able to write

    read -> eval -> print -> loop
rather than:

    (loop (print (eval (read))))


Consider applying for YC's Winter 2026 batch! Applications are open till Nov 10

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: