Stream.st
changeset 23738 a71468439dc7
parent 23729 772ddbedfb9d
child 23892 99bbfe4d920f
equal deleted inserted replaced
23737:86377b7e2526 23738:a71468439dc7
  4483         Smalltalk at:#Transcript put:Stdout
  4483         Smalltalk at:#Transcript put:Stdout
  4484      or to use #show:/#showCR: with internal or external streams."
  4484      or to use #show:/#showCR: with internal or external streams."
  4485 
  4485 
  4486     self showCR:(something bindWith:arg1 with:arg2 with:arg3)
  4486     self showCR:(something bindWith:arg1 with:arg2 with:arg3)
  4487 
  4487 
       
  4488     "
       
  4489      Transcript showCR:'hello %1 %2 %3' with:'foo' with:10 with:'bla'
       
  4490     "
       
  4491 
  4488     "Created: / 19-08-2010 / 15:42:43 / cg"
  4492     "Created: / 19-08-2010 / 15:42:43 / cg"
       
  4493     "Modified (comment): / 15-02-2019 / 09:48:27 / Claus Gittinger"
  4489 !
  4494 !
  4490 
  4495 
  4491 showCR:something with:arg1 with:arg2 with:arg3 with:arg4
  4496 showCR:something with:arg1 with:arg2 with:arg3 with:arg4
  4492     "append a printed representation of the argument to the stream, expanding
  4497     "append a printed representation of the argument to the stream, expanding
  4493      the placeHolders %1,%2 and %3 with the printStrings of arg1, arg2 and arg3.
  4498      the placeHolders %1,%2 and %3 with the printStrings of arg1, arg2 and arg3.