Advertisement
Guest User

Untitled

a guest
Jan 24th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.26 KB | None | 0 0
  1. \documentclass{standalone}
  2.  
  3. \begin{document}
  4.  
  5. \def\foo{\relax}
  6. \ifx\foo\relax
  7.  \typeout{foo is relax}
  8. \else
  9.  \typeout{foo is NOT relax}
  10. \fi
  11.  
  12. \let\foo=\relax
  13. \ifx\foo\relax
  14.  \typeout{foo is relax}
  15. \else
  16.  \typeout{foo is NOT relax}
  17. \fi
  18.  
  19. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement