1 { System isWindows ifTrue: [ self error: 'windoze eats shit!' ]. }
7 'raw: ' print. System termRaw printNl.
9 [ c == $q ] whileFalse: [
15 (c value < 33 or: [ c value = 127]) ifTrue: [ '#' print. c value printNl ] ifFalse: [ '$' print. c printNl ].
21 System termRaw: false.