Artifact 4eb8825da2f6b69f3930fd1ff8dea804a8068e44:
- File s2/require.d/ostream.s2 — part of check-in [207e098803] at 2014-08-14 14:39:33 on branch trunk — boatloads of fsl/requires2 bits, latest s2. (user: stephan size: 253)
/** A require() module providing an "ostream" object. It overloads the << operator and sends all arguments to s2.io.output(). */ return { 'operator<<': proc(self,arg){ return out(arg), this; }.importSymbols({out: s2.io.output}) };