JanetDocsPlaygroundI'm feeling luckyGitHub sign in
(def [pipe-r pipe-w] (os/pipe)) (:write pipe-w "hello") (:read pipe-r 5) # => @"hello" # send the string "hello" into the writable stream # part and read it back from the readable one