Can types be global
- Posted by don cole <doncole at pacbell.net> Nov 28, 2006
- 558 views
This works (in the same file). type caps(integer x) return x >= 'A' and x<= 'Z' end type This doesn't in an incude file. global type caps(integer x) return x >= 'A' and x<= 'Z' end type Why whats wrong? Don Cole