home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / GNU / M4V05AS.ZIP / EXAMPLES / DEBUGGIN.2 < prev    next >
Encoding:
Text File  |  1992-02-19  |  325 b   |  14 lines

  1. dnl "m4.texinfo": 942: Origin here
  2. define(`foo', `Hello World.')
  3. dnl =>
  4. define(`echo', `$@')
  5. dnl =>
  6. traceon(`foo', `echo')
  7. dnl =>
  8. foo
  9. dnl *>m4 trace (1): foo -> `Hello World.'
  10. dnl =>Hello World.
  11. echo(gnus, and gnats)
  12. dnl *>m4 trace (1): echo( `gnus', `and gnats' ) -> ``gnus', `and gnats''
  13. dnl =>gnus, and gnats
  14.