resource(10000) 0x80 | 0x01; // 129 (0x00000081)resource(10001) ~0x01; // -2 (0xFFFFFFFE)resource(10002) 0x3F1 & ~0x01; // 1008 (0x000003F0)resource(10010) 100 + 10 + 1; // 111resource(10011) 100 + 10 + -1; // 109resource(10012) -15 + -15; // -30resource(10013) -15 - -15; // 0//resource(10014) -15 - +15; // syntax errorresource(10015) 2 * (4 + 3); // 14resource(10020) 10 + 5 * 3; // 25resource(10021) (10 + 5) * 3; // 45resource(10022) 10 / 1 * 0; // 0//resource(10030) 10 / 0; // div by 0 error//resource(10031) 10 % 0; // div by 0 error//resource(10032) 10 / (1 - 1); // div by 0 error//resource(10040) 10.1 + 3.14; // cannot castresource(10041) (int8) 100 + (int8) 257; // 101 (32-bit)resource(10042) ((int8) 100) + ((int8) 257); // 101 (32-bit)resource(10043) (int8) ((int8) 100 + (int8) 257); // 101 (8-bit)/* don't try this at home kids */type #'LONG' my_int32 { int32 x = 10 };resource(10050) my_int32; // 10resource(10051) my_int32 6; // 6resource(10052) my_int32 + 10; // 20resource(10053) my_int32 6 + 10; // 16resource(10054) my_int32 { 6 } + 10; // 16resource(10056) my_int32 (int8) 257; // 1resource(10057) my_int32 (6 + 10); // 16type sumtin { int32 x = 10 + 5 };resource(10060) sumtin; // 15resource(10061) #'LONG' array { 10 + 5, 0xFF & 0x88 }; // 0x0F00...0088resource(10062) #'LONG' array{(int8) (10 + 5), (int8) (0xFF & 0x88) // 0x0F88};resource(10063) message { "field" = (10 + 5)*3 }; // 45//resource(10070) (array); // parse error//resource(10071) my_int32 (my_int32); // parse error//resource(10072) my_int32(my_int32(my_int32)); // parse error//resource(10073) array array; // parse error//resource(10074) array (array); // parse errorresource(10080) my_int32 my_int32; // 10resource(10081) my_int32 my_int32 my_int32; // and so on//------------------------------------------------------------------------------resource(10100) B_SINGLE_LAUNCH;resource(10101) (int8) B_EXCLUSIVE_LAUNCH;resource(10102) B_MULTIPLE_LAUNCH | B_BACKGROUND_APP | B_ARGV_ONLY;//resource app_flags B_MULTIPLE_LAUNCH | B_BACKGROUND_APP;