Tag.lagda 644 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. \documentclass{article}
  2. \usepackage[references]{agda}
  3. \begin{document}
  4. \begin{code}
  5. module Tag where
  6. module Apa where
  7. bepa : Set → Set
  8. bepa x = x
  9. data Cepa : Set where
  10. cepa : Cepa
  11. record Depa : Set₁ where
  12. field
  13. depa : Set
  14. postulate
  15. epa : Set
  16. postulate
  17. α : Set
  18. _∘_ : Set
  19. \end{code}
  20. \begin{tabular}{ll}
  21. Name & Test \\
  22. \hline
  23. Apa & \AgdaRef{Apa} \\
  24. bepa & \AgdaRef{bepa} \\
  25. Cepa & \AgdaRef{Cepa} \\
  26. cepa & \AgdaRef{cepa} \\
  27. Depa & \AgdaRef{Depa} \\
  28. depa & \AgdaRef{depa} \\
  29. epa & \AgdaRef{epa} \\
  30. α & \AgdaRef{α} \\
  31. \_∘\_ & \AgdaRef{\_∘\_} \\
  32. \end{tabular}
  33. \end{document}