racket/collects/tests/honu/function-use.honu
2010-10-22 10:48:09 -06:00

16 lines
171 B
Plaintext

#lang honu
// require "function.honu";
function foo (a b c){
display("5");
newline();
}
foo(1, 2, 3);
function (a b c){
display(a+b+c);
newline();
}(1, 2, 3);