Skip to content

Instantly share code, notes, and snippets.

@vbuaraujo
Created March 22, 2017 13:04
Show Gist options
  • Save vbuaraujo/c4a3037a3acba8dc20839b9f34e833f1 to your computer and use it in GitHub Desktop.
Save vbuaraujo/c4a3037a3acba8dc20839b9f34e833f1 to your computer and use it in GitHub Desktop.
(define-syntax >>
(syntax-rules ()
[(>> val1 (fun args ...))
(fun val1 args ...)]
[(>> val1 val2 rest ...)
(>> (>> val1 val2) rest ...)]))
;; Examples.
(format #t "~s\n"
(>> 10
(* 2)
(+ 3)))
(format #t "~s\n"
(>> "foo,bar,baz"
(string-split #\,)
(list-ref 1)
(string-upcase)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment