home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / m / m4v05as.zip / EXAMPLES / DEBUGGIN.2 < prev    next >
Text File  |  1992-02-19  |  325b  |  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.