FredericHamel / gambit-experiments

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gambit experiments

  • Basic implementation of Erlang/Elixir pipe operator (|>) using Scheme macros

Pipe operator

This operator take the result of the first operand and pass it to the second expression as first argument.

(pipe x (+ 2)) ;; => (+ x 2)

Elixir Documentation

About


Languages

Language:Scheme 100.0%