blob: 78b604eae7f6bb0e418006e9faa6c1742943f59c (
plain)
1
2
3
4
5
6
7
8
9
|
require("complex")
return function (self, 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
|