racket/collects/tests/honu/function.honu
2012-02-01 16:05:40 -07:00

13 lines
88 B
Plaintext

#lang honu
function foo(x){
1 + x * 2
}
fun foo2(x){
foo(x + 2)
}
foo(5)
foo2(3)