Stream.st
changeset 24413 d9b1c89a730e
parent 24236 5de49e99e8fd
child 24631 09c8eaa7f326
equal deleted inserted replaced
24412:3e8c0ef66066 24413:d9b1c89a730e
   219 !Stream class methodsFor:'testing'!
   219 !Stream class methodsFor:'testing'!
   220 
   220 
   221 isAbstract
   221 isAbstract
   222     ^ self == Stream
   222     ^ self == Stream
   223 ! !
   223 ! !
       
   224 
   224 
   225 
   225 
   226 
   226 !Stream methodsFor:'Compatibility-Dolphin'!
   227 !Stream methodsFor:'Compatibility-Dolphin'!
   227 
   228 
   228 display:someObject
   229 display:someObject
  4564         Smalltalk at:#Transcript put:Stdout
  4565         Smalltalk at:#Transcript put:Stdout
  4565      or to use #show:/#showCR: with internal or external streams."
  4566      or to use #show:/#showCR: with internal or external streams."
  4566 
  4567 
  4567     self showCR:(something bindWith:arg)
  4568     self showCR:(something bindWith:arg)
  4568 
  4569 
       
  4570     "
       
  4571      Transcript showCR:'hello %1' with:'world'
       
  4572     "
       
  4573 
  4569     "Created: / 19-08-2010 / 15:41:46 / cg"
  4574     "Created: / 19-08-2010 / 15:41:46 / cg"
  4570 !
  4575 !
  4571 
  4576 
  4572 showCR:something with:arg1 with:arg2
  4577 showCR:something with:arg1 with:arg2
  4573     "append a printed representation of the argument to the stream, expanding
  4578     "append a printed representation of the argument to the stream, expanding