home *** CD-ROM | disk | FTP | other *** search
- /*
- gen.ch
-
- A couple of useful commands.
- Acknowledgements to Reference(Clipper) for second one.
- */
-
- #translate ifnil(<var>, <val>) ;
- => if(<var> == NIL, <val>, <var>)
-
- #command ifnil <var> := <value> ;
- => if(<var> == NIL, <var> := <value>, <var>)
-