blob: bd42825d30e460b7779c7ee5e0a8bd30279693bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
(.module:
[lux (#- nat int rev)
[control
monad]]
["." // (#+ Analysis Operation)
[".A" type]
["/." //]])
## [Analysers]
(do-template [<name> <type> <tag>]
[(def: #export (<name> value)
(-> <type> (Operation Analysis))
(do ///.Monad<Operation>
[_ (typeA.infer <type>)]
(wrap (#//.Primitive (<tag> value)))))]
[bit Bit #//.Bit]
[nat Nat #//.Nat]
[int Int #//.Int]
[rev Rev #//.Rev]
[frac Frac #//.Frac]
[text Text #//.Text]
)
(def: #export unit
(Operation Analysis)
(do ///.Monad<Operation>
[_ (typeA.infer Any)]
(wrap (#//.Primitive #//.Unit))))
|