Login
Artifact [e2ae9ca9ee]
Login

Artifact e2ae9ca9eee0551536f52418f8e1241f6bf9bd77:


/**
   A require() module providing an "ostream" object. It overloads the
   << operator and sends all arguments to s2.io.output().
*/
return {
    output: s2.io.output,
    'operator<<': proc(self,arg){return this.output(arg), this}
};