File: mutatee.pd_lua

package info (click to toggle)
pd-lua 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 656 kB
  • ctags: 265
  • sloc: ansic: 1,504; makefile: 314
file content (10 lines) | stat: -rw-r--r-- 183 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
Mutatee = pd.Class:new():register("mutatee")

function Mutatee:initialize()
  self.inlets = 1
  return true
end

function Mutatee:in_1_bang()
  pd.post("I'm happy and carefree!")
end