|
|
||
--------------------------------------------------------- Object#display obj.display(port=$>) => nil ------------------------------------------------------------------------ Prints _obj_ on the given port (default $> ). Equivalent to: def display(port=$>) port.write self end For example: 1.display "cat".display [ 4, 5, 6 ].display puts _produces:_ 1cat456