2 summary::posts text to the post window
6 The class Post is a stream destination. Its main use is that it can sometimes make code more readable and execution slightly more efficient.
8 Post <<< a << " " <<< b << " " <<< c << " " <<< d << Char.nl;
12 (a.asCompileString + b.asCompileString + c.asCompileString + d.asCompileString).postln;
16 << also means object left shift.
28 Post as compile string
73 // post as compile string
74 Post <<< a << Char.nl;
78 // post as compile string
79 Post <<< d << Char.nl;
81 //This is the equivalent of :
84 d.asCompileString.postln;