aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/common-lisp/primitive.jvm.lux
blob: 6bb4ec1400079db320c39ba1be6053864fee80d1 (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
30
(.module:
  lux
  (lux [macro "meta/" Monad<Meta>])
  (luxc (lang (host ["_" common-lisp #+ Expression])))
  [//]
  (// [".T" runtime]))

(def: #export translate-bool
  (-> Bool (Meta Expression))
  (|>> _.bool meta/wrap))

(def: #export translate-int
  (-> Int (Meta Expression))
  (|>> _.int meta/wrap))

(def: #export translate-nat
  (-> Nat (Meta Expression))
  (|>> (:! Int) _.int meta/wrap))

(def: #export translate-deg
  (-> Deg (Meta Expression))
  (|>> (:! Int) _.int meta/wrap))

(def: #export translate-frac
  (-> Frac (Meta Expression))
  (|>> _.double meta/wrap))

(def: #export translate-text
  (-> Text (Meta Expression))
  (|>> _.string meta/wrap))