aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/experiment/compiler.lux
blob: 4f9e583777e57970931094e8cb2ffe88f651e8a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(.using
 [library
  [lux (.except)
   [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"})])]})