root/trunk/orca/tests/working/func_typecheck.r

Revision 1, 237 bytes (checked in by krobillard, 3 years ago)

Import orca & thune.

Line 
1REBOL[
2    Purpose: {Verify that function type checking works}
3]
4
5b: 2
6f: func [a [integer!] /msg v [string!] /local b] [
7    if v [print v]
8    print local
9    print b
10    b: 8
11    print a + b
12]
13
14f 10
15f/msg 10 "Blorbus Maximus"
16print b
Note: See TracBrowser for help on using the browser.