aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debug.moon
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2020-03-07 20:58:30 +0000
committers-ol <s-ol@users.noreply.github.com>2020-03-07 20:58:51 +0000
commit6a7a2ddaca798f3cccac394d1fb9f317cbe90de6 (patch)
tree4e49e53057b39f75813311ede13f87d238061fe6 /lib/debug.moon
parentspellcheck (diff)
downloadalive-6a7a2ddaca798f3cccac394d1fb9f317cbe90de6.tar.gz
alive-6a7a2ddaca798f3cccac394d1fb9f317cbe90de6.zip
add ldoc documentation
Diffstat (limited to 'lib/debug.moon')
-rw-r--r--lib/debug.moon6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/debug.moon b/lib/debug.moon
index 1ce56cc..4a22e10 100644
--- a/lib/debug.moon
+++ b/lib/debug.moon
@@ -1,4 +1,4 @@
-import Op, ValueInput, EventInput, match from require 'core.base'
+import Op, Input, match from require 'core.base'
class out extends Op
@doc: "(out [name-str?] value) - log value to the console"
@@ -6,8 +6,8 @@ class out extends Op
setup: (inputs) =>
{ name, value } = match 'str? any', inputs
super
- name: name and ValueInput name
- value: ValueInput value
+ name: name and Input.value name
+ value: Input.value value
tick: =>
{ :name, :value } = @unwrap_all!