home *** CD-ROM | disk | FTP | other *** search
- //
- // Copyright (C) 1991 Texas Instruments Incorporated.
- //
- // Permission is granted to any individual or institution to use, copy, modify,
- // and distribute this software, provided that this complete copyright and
- // permission notice is maintained, intact, in all copies and supporting
- // documentation.
- //
- // Texas Instruments Incorporated provides this software "as is" without
- // express or implied warranty.
- //
-
- #pragma defmacro GENERATE generate delimiter=}
- #pragma defmacro MACRO macro delimiter=}
-
- MACRO ODD (REST: ints) {
- GENERATE (x, ints) {
- #if x&1
- x
- #endif
- }
- }
-
- ODD(1,2,3,4,5,6)
-