aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/experiment/compiler.lux
blob: f17f6c499dc94405090e5ec9e2f04f40ecaadd8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(.using
 [library
  [lux "*"
   [control
    ["[0]" try]]
   [tool
    ["[0]" compiler {"+" Custom}]]]])

(def: .public (dummy parameters)
  (Custom Nat [] [])
  {try.#Success
   [0 (function (_ input)
        [compiler.#dependencies (list)
         compiler.#process (function (_ state archive)
                             {try.#Failure "YOLO"})])]})