[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [sc-users] ? and ??



last one was obviously a typo, read:

nil ?? { "foo".post }

apologies,
_c

On Saturday, December 28, 2002, at 04:56 PM, ccos wrote:

try,

nil ? 5
nil ? { "foo".post }
nil ?? { "foo.post" }

look in NIL.sc & Object.sc

best,
_c

On Saturday, December 28, 2002, at 02:58 PM, christian.hresko wrote:

what does ? do?
what does ?? do?

(4 ? 5).postln;
4

(4 ?? 5).postln;
4


x = FSinOsc;
y = FSinOsc;
z = LFSaw;

(x ? y).postln;
FSinOsc

(x ?? y).postln;
FSinOsc

(x ? z).postln;
FSinOsc

(x ?? z).postln;
FSinOsc


this is testing for what?

_______________________________________________
sc-users mailing list
sc-users@xxxxxxxxxxxxxxx
http://www.create.ucsb.edu/mailman/listinfo/sc-users


_______________________________________________
sc-users mailing list
sc-users@xxxxxxxxxxxxxxx
http://www.create.ucsb.edu/mailman/listinfo/sc-users