Login
ostream.s2 at [af1b0ff74b]
Login

File s2/require.d/ostream.s2 artifact 4eb8825da2 part of check-in af1b0ff74b


/**
   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})
};