Skip to content

Instantly share code, notes, and snippets.

Created November 13, 2016 17:44
Show Gist options
  • Save anonymous/f03c73e4aefecd78029162853853d86b to your computer and use it in GitHub Desktop.
Save anonymous/f03c73e4aefecd78029162853853d86b to your computer and use it in GitHub Desktop.
r = pipeline(3) \
| :dec \
| [:add, 2] \
| [:mul, 5] \
| :double
puts r.value
r = pipeline(3) do
dec
add(2)
mul(5)
double
end
puts r
r = pipeline(3)
.dec
.add(2)
.mul(5)
.double
.value
puts r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment