diff options
Diffstat (limited to 'lib/debug.moon')
| -rw-r--r-- | lib/debug.moon | 6 |
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! |
