How to easily change the tempo of a pbind?

Hello,
Sorry to ask a beginner’s question, but I have trouble understanding how to set the tempo for a Pbind pattern.

Here is my Pattern:

(
p = Pbind(
	\type, \midi,
	\midicmd, \noteOn,
	\midiout, m,
	\scale, Scale.harmonicMinor,
	\chan, 0,
	\degree, Pseq([0,3,2,-3,6,5],inf),
	\mtranspose, Pseq([0,0,0,0,0,0,2,2,2,2,2,2,-3,-3,-3,3,3,3,5,5,5,5,5,5,4,4,4,0,0,-5],2),
	\amp, Pexprand(75,100,inf)/127,
	\sustain, Pseq([1/2,1.2/4,1.2/4,1.2/2,1/2,0.9],inf),
	\dur, Pseq([1/2,1/4,1/4,1/2,1/2,1],inf),
).play;
)

Which commands should I add, and where should I put them?
Si vous pouvez me répondre en français, c’est super, mais l’anglais me conviendra quand même.

you can simply include a key in your Pbind: \tempo (the tempo is expressed in beats per second).

Be aware though that when you call .play on a Pbind, it schedules playback on the default TempoClock. So changes made through the \tempo key will propogate to other patterns scheduled on that clock!

you can set your Pbind to schedule on a private clock

t = TempoClock.new( beatsPerSecond );
Pbind(\dur, 0.1).play(clock: t)

So, if I understand correctly,
I just have to insert

\tempo, 89/60,

To have a tempo of 89 BPM ?

oui! (et quelque lettres de plus)

Merci ! Bonne soirée !