Artifact 964b1fb783ec3e94423c1a19047d518da87023f2:
- File s2/require.d/ostream.s2 — part of check-in [4b42506fe4] at 2016-01-06 17:15:47 on branch trunk — latest s2. (user: stephan size: 247)
/** A require() module providing an "ostream" object. It overloads the << operator and sends all arguments to s2.io.output(). */ return { 'operator<<': proc(self,arg){out(arg); return this} .importSymbols({out: s2.io.output}) };