/* This example shows using string constants for printing
   on screen. Please note, that all letters are uppercased
   before compiling because of different encoding of Sharp
   MZ-800. All listed characters are supported except ^, 
   which is replaced by an arrow up.
*/


void main() {
printf("");
printf(" ||||||||||||||||||||||||||||||||||||||");
printf(" |    Supported characters in MiSC    |");
printf(" ||||||||||||||||||||||||||||||||||||||");
printf("");
printf("  qwertzuiopasdfghjklyxcvbnm0123456789");
printf("       [];':,./<>?-=\+!@#$%^&*()");
}