aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/compiler/runtime.jvm.lux
blob: b6cebb193639e5f2a515841ce0d90d4a2a647447 (plain)
1
2
3
4
5
6
7
8
9
10
11
(;module:
  lux
  (lux (control monad)
       (concurrency ["P" promise "P/" Monad<Promise>])
       (data text/format
             ["E" error]))
  (luxc ["&" base]))

(def: #export (compile-runtime _)
  (-> Top (P;Promise (E;Error Unit)))
  (P/wrap (#E;Success [])))