aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/type/resource.lux
diff options
context:
space:
mode:
authorEduardo Julian2019-04-06 23:11:20 -0400
committerEduardo Julian2019-04-06 23:11:20 -0400
commit2a05d8f3711d2e1b6fcccd9a2869478197386a7f (patch)
tree12206ff1f282943225b795334e38c0ac1e935e77 /stdlib/source/lux/type/resource.lux
parenta75f032ff219fdd639580455a6d3e83fd05d5592 (diff)
Moved "lux/cli", "lux/io" and "lux/function" under "lux/control".
Diffstat (limited to 'stdlib/source/lux/type/resource.lux')
-rw-r--r--stdlib/source/lux/type/resource.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/type/resource.lux b/stdlib/source/lux/type/resource.lux
index 22d83defd..8e4b63679 100644
--- a/stdlib/source/lux/type/resource.lux
+++ b/stdlib/source/lux/type/resource.lux
@@ -6,6 +6,7 @@
[control
["p" parser]
["ex" exception (#+ exception:)]
+ ["." io (#+ IO)]
[concurrency
["." promise (#+ Promise)]]]
[data
@@ -23,8 +24,7 @@
["." macro
["s" syntax (#+ Syntax syntax:)]]
[type
- abstract]
- ["." io (#+ IO)]])
+ abstract]])
(type: #export (Procedure monad input output value)
(-> input (monad [output value])))