TeXExtension.lagda.tex 243 B

12345678910111213141516171819202122232425
  1. \documentclass{article}
  2. \usepackage{agda}
  3. \begin{document}
  4. Foo
  5. \begin{code}
  6. module TeXExtension where
  7. data Bool : Set where
  8. true : Bool
  9. false : Bool
  10. b : Bool
  11. b = false
  12. \end{code}
  13. c : Bool
  14. c = broccoli
  15. \end{document}