Object.st
changeset 24659 c42004494020
parent 24624 d43c1cf3a830
child 24692 21348277bc96
--- a/Object.st	Tue Aug 27 01:57:43 2019 +0200
+++ b/Object.st	Tue Aug 27 09:24:07 2019 +0200
@@ -4028,7 +4028,9 @@
 !
 
 printStringForPrintIt
-    "for compatibility (used to be displayString), now the printIt menu function now sends this message"
+    "for compatibility (used to be displayString), 
+     the printIt menu function now sends this message, 
+     allowing for more fine-grain control over what is printed."
 
     ^ self displayString
 
@@ -4036,6 +4038,10 @@
      #(1 2 3) printString
      #(1 2 3) printStringForPrintIt
      #(1 2 3) storeString
+
+     'hello' printString       
+     'hello' printStringForPrintIt  
+     'hello' storeString           
     "
 !