Added initial caml4perl.
[perl4caml.git] / test.pl
1 sub return1
2   {
3     print "this is the 'return1' function!\n";
4     1;
5   }
6
7 sub adder
8   {
9     $_[0] + $_[1]
10   }