evdecl void chars() { int8 i; i = 0x20; lp: putchar(i); i++; if (i <= 0x7e) goto lp; return; } // バイトコードで書くと・・・