aboutsummaryrefslogtreecommitdiff
path: root/examples/mutatee.pd_lua
blob: dcc6d9120a8cfef67d6da27bab85df8db085a6d4 (plain)
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