|
|
|
|
@ -4,7 +4,7 @@ import { Num, Zero, ge, ifz, pred, succ } from './num'; |
|
|
|
|
import { x00 } from './byte'; |
|
|
|
|
import { Char, fromChar as _c, dec as cdec, inc as cinc, eq, ifn } from './char'; |
|
|
|
|
import { Pair, first, fst, second, snd, uncurry } from './pair'; |
|
|
|
|
import { List, Nil, cons, head, repeat, set, singleton, tail, update } from './list'; |
|
|
|
|
import { List, cons, head, repeat, set, singleton, tail, update } from './list'; |
|
|
|
|
import { Empty, String, get, len, snoc } from './string'; |
|
|
|
|
|
|
|
|
|
type Program = Pair<List<Num>, String>; |
|
|
|
|
|