Re: do-while style
- Posted by DerekParnell (admin) Aug 28, 2008
- 908 views
SDPringle said...
ifdef SAFE --use 4.0 features... end ifdef
That cannot be the correct usage, ifdef is a 4.0 feature. What is it for then?
It is correct usage, but obviously not in a pre 4.0 environment. So maybe a better example might be ...
ifdef 4_0 --use 4.0 features... else --use 4.1 features. end ifdef