blob: 8819847e655d1a9e6b10f74e7bdf516ef5d6102c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
(.require
[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"})])]})
|