racket/collects/tests/honu/flow.honu

16 lines
121 B
Plaintext

#lang honu
function foo(x){
x + 1
}
function bar(x){
x * 2
}
function buz(z){
z - 4
}
foo(5) | bar | buz