blob: 99acd4249b29fc835f67845e849aa0c916c8f5da (
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"})])]})
|