aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/experiment/compiler.lux
blob: a99927f44e9ddaf4785df16f590e6cb8c391259d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
... This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
... If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.

(.require
 [library
  [lux (.except)
   [control
    ["[0]" try]]
   [meta
    ["[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"})])]})