1    type bool @c =
2        def (^) rhs : bool
3    
4    type Char "char" =
5        def (==) rhs : bool
6    
7        def is_ascii = true
8    
9    type CChar "char" =
10       def (==) rhs : bool
11   
12   type LiteralChar @literal =
13       inherit Char
14       inherit CChar
15