aboutsummaryrefslogtreecommitdiff
path: root/examples/complex.pd_lua
diff options
context:
space:
mode:
Diffstat (limited to 'examples/complex.pd_lua')
-rw-r--r--examples/complex.pd_lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/complex.pd_lua b/examples/complex.pd_lua
new file mode 100644
index 0000000..a3a3602
--- /dev/null
+++ b/examples/complex.pd_lua
@@ -0,0 +1,12 @@
+require("complex")
+
+local C = pd.Class:new():register("complex")
+
+function C:initialize(sel, atoms)
+ for k,v in pairs(complex) do
+ pd.post("complex." .. tostring(k) .. " = " .. tostring(v))
+ end
+ self.inlets = 0
+ self.outlets = 0
+ return true
+end