'From Pharo0.1 of 16 May 2008 [Latest update: #10236] on 20 February 2009 at 2:18:02 pm'! Object subclass: #DoubleHalt instanceVariableNames: '' classVariableNames: '' poolDictionaries: '' category: 'DoubleHalt'! !DoubleHalt commentStamp: 'bill.schwab 2/20/2009 13:35' prior: 0! Stef says that successive halts do not work. Try it.! !DoubleHalt methodsFor: 'as yet unclassified' stamp: 'bill.schwab 2/20/2009 14:17'! tryMe 2 + 3. self halt. " DoubleHalt new tryMeAgain. " ! ! !DoubleHalt methodsFor: 'as yet unclassified' stamp: 'bill.schwab 2/20/2009 14:16'! tryMeAgain self tryMe. 4+5. self halt. " DoubleHalt new tryMeAgain. " ! !