Rawstatus is a command used in BlitzBasic
Here is a short blitz code example
The program will do nothing exept to open a screen in blitz mode and wait for the ESC key to be pressed
In AmiBench it will not detect the esc key at all. In Workbench 3.1 it will work (although throw an error upon quitting, because this is just a quick and dirty example)
BLITZ
Repeat
If RawStatus(69) Then quit = 1
VWait
Until quit
End