Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 615 Bytes

Foo.lagda.md

File metadata and controls

50 lines (36 loc) · 615 Bytes

Sample non-literate Agda program

A remark to test bulleted lists:

  • This file serves as example for agda2lagda.

  • The content may be non-sensical.

Indeed!

module Foo where

Some data type.

data D : Set where
  c : D

A function.

foo : D  D
foo c = c   -- basically, the identity

A subheading

module Submodule where

  postulate
    zeta : D

That's it. Bye.