Issue2019.lagda 638 B

1234567891011121314151617181920212223242526
  1. \documentclass{article}
  2. \usepackage{agda}
  3. \begin{document}
  4. \begin{code}
  5. -- We use non-standard spaces between the name of the term and the
  6. -- colon.
  7. postulate
  8. s00A0 : Set -- NO-BREAK SPACE ("\ " with Agda input method)
  9. s2004 : Set -- THREE-PER-EM SPACE ("\;" with Agda input method)
  10. s202F : Set -- NARROW NO-BREAK SPACE ("\," with Agda input method)
  11. \end{code}
  12. % Various whitespace characters: "    ".
  13. \begin{code}
  14. open import Agda.Builtin.String
  15. -- Various whitespace characters: "    ".
  16. various-whitespace-characters : String
  17. various-whitespace-characters = "    "
  18. \end{code}
  19. \end{document}