1234567891011121314151617181920212223242526272829303132 |
- Queso!
- aaa
- ..
- ::
- module TrailingColon where
- data Bool : Set where
- true : Bool
- false : Bool
- aa : Bool
- a : Bool
- a = true
- Tomate
- bleh
- bli
- ::
- b : Bool
- b = false
- for example::
- c : Bool
- c = aa
- and that's all, folks
|