2022-07-28 18:19:07 +03:00
|
|
|
module Judoc;
|
|
|
|
|
|
|
|
axiom A : Type;
|
2023-04-12 11:07:01 +03:00
|
|
|
|
2022-07-28 18:19:07 +03:00
|
|
|
axiom b : Type;
|
|
|
|
|
2023-05-19 15:05:32 +03:00
|
|
|
--- document type
|
2023-03-29 16:51:04 +03:00
|
|
|
type T :=
|
2023-09-07 17:20:14 +03:00
|
|
|
--- document constructor
|
|
|
|
t : T;
|
2022-07-28 18:19:07 +03:00
|
|
|
|
2023-05-19 15:05:32 +03:00
|
|
|
--- blah ;id A; and ;A A id T A id; this is another ;id
|
2023-03-29 16:51:04 +03:00
|
|
|
id
|
|
|
|
id; example
|
2022-07-28 18:19:07 +03:00
|
|
|
--- hahahah
|
|
|
|
--- and another one ;T;
|
2023-07-11 18:22:07 +03:00
|
|
|
id : {A : Type} → A → A
|
|
|
|
| a := a;
|
2022-07-28 18:19:07 +03:00
|
|
|
|
|
|
|
--- hellowww
|
2023-05-19 15:05:32 +03:00
|
|
|
{-- judoc block --}
|
|
|
|
{-- judoc
|
|
|
|
block --}
|
|
|
|
{-- -- --}
|
|
|
|
{-- --}
|
|
|
|
{-- f
|
|
|
|
z ;Type; --}
|
2023-07-11 18:22:07 +03:00
|
|
|
id2 : {A : Type} → A → A
|
|
|
|
| a := a
|
|
|
|
| a := a;
|
2023-05-19 15:05:32 +03:00
|
|
|
|
|
|
|
-- }
|
|
|
|
--- testing double minus --
|
|
|
|
--- testing triple --- minus
|
|
|
|
--- testing closing --}.
|
|
|
|
---
|
|
|
|
--- second paragraph
|
|
|
|
axiom B : {A : Type} → A → A;
|
|
|
|
|
|
|
|
{-- Hi
|
|
|
|
|
|
|
|
Bye
|
|
|
|
end --}
|
|
|
|
axiom M : Type;
|