diff -r 60a039a6f137 -r c42004494020 Object.st --- 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 " !