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

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