Break the monolithic examples/50-smoke.sx into 30 focused per-section examples,
filed into their category blocks (basic/types/comptime/memory/protocols/ffi),
each carrying only the top-level decls its section references (the protocols
section keeps the full preamble — its deps flow through UFCS method calls that
name-based extraction can't see). Outputs verified identical to the original
section blocks.
Add examples/1036-errors-failable-smoke.sx — an end-to-end error-handling example
(the E5.4 work): named + inferred error sets consumed via destructure, try (in
helpers), catch (bare-expr / match-body / diverging / no-binding), or
value-terminator, onfail+defer interleave, and error.X value + {} tag
interpolation.
Remove examples/50-smoke.sx. Suite: 324 passed, 0 failed.
167 lines
3.9 KiB
Plaintext
167 lines
3.9 KiB
Plaintext
#import "modules/std.sx";
|
|
#import "modules/math/math.sx";
|
|
#import "modules/compiler.sx";
|
|
#import "modules/test.sx";
|
|
pkg :: #import "modules/testpkg";
|
|
|
|
add :: (a: s32, b: s32) -> s32 { a + b; }
|
|
|
|
mul :: (a: s32, b: s32) -> s32 { a * b; }
|
|
|
|
// P4 edge: Chained default→default calls
|
|
Chained :: protocol {
|
|
base :: (msg: string) -> s32;
|
|
wrap :: (msg: string) -> s32 {
|
|
self.base(msg) + 1;
|
|
}
|
|
double_wrap :: (msg: string) -> s32 {
|
|
self.wrap(msg) + self.wrap(msg);
|
|
}
|
|
}
|
|
|
|
main :: () {
|
|
|
|
// ========================================================
|
|
// 2. OPERATORS & PRECEDENCE
|
|
// ========================================================
|
|
print("=== 2. Operators ===\n");
|
|
|
|
// Arithmetic
|
|
print("add: {}\n", 3 + 4);
|
|
print("sub: {}\n", 10 - 3);
|
|
print("mul: {}\n", 6 * 7);
|
|
print("div: {}\n", 20 / 4);
|
|
print("mod: {}\n", 17 % 5);
|
|
print("neg: {}\n", -(5));
|
|
|
|
// Comparisons
|
|
print("eq: {}\n", 5 == 5);
|
|
print("neq: {}\n", 5 != 3);
|
|
print("lt: {}\n", 3 < 5);
|
|
print("gt: {}\n", 5 > 3);
|
|
print("le: {}\n", 5 <= 5);
|
|
print("ge: {}\n", 5 >= 3);
|
|
|
|
// Chained comparisons
|
|
v := 50;
|
|
print("chain: {}\n", 0 <= v <= 100);
|
|
print("chain-gt: {}\n", 100 > v > 0);
|
|
print("chain-mixed: {}\n", 100 > v >= 0);
|
|
|
|
// Equality chains
|
|
print("eq-chain: {}\n", 5 == 5 == 5);
|
|
print("eq-chain-f: {}\n", 5 == 5 == 6);
|
|
|
|
// Bitwise
|
|
print("band: {}\n", 0xFF & 0x0F);
|
|
print("bor: {}\n", 1 | 2 | 4);
|
|
|
|
// Bitwise XOR
|
|
print("bxor: {}\n", 0xFF ^ 0x0F);
|
|
print("bxor2: {}\n", 6 ^ 3);
|
|
|
|
// Bitwise NOT
|
|
print("bnot: {}\n", ~0);
|
|
print("bnot2: {}\n", ~1);
|
|
|
|
// Shifts
|
|
print("shl: {}\n", 1 << 4);
|
|
print("shr: {}\n", 256 >> 4);
|
|
print("shl2: {}\n", 3 << 3);
|
|
print("shr2: {}\n", 255 >> 1);
|
|
|
|
// Bitwise on variables
|
|
bv1 := 0xFF;
|
|
bv2 := 0x0F;
|
|
print("band-var: {}\n", bv1 & bv2);
|
|
bv3 := 1;
|
|
bv4 := 6;
|
|
print("bor-var: {}\n", bv3 | bv4);
|
|
print("bxor-var: {}\n", bv1 ^ bv2);
|
|
print("shl-var: {}\n", bv3 << 4);
|
|
print("shr-var: {}\n", bv1 >> 4);
|
|
print("bnot-var: {}\n", ~bv2);
|
|
|
|
// Bitwise compound assignment
|
|
bca := 0xFF;
|
|
bca &= 0x0F;
|
|
print("and-assign: {}\n", bca);
|
|
bco := 0x0F;
|
|
bco |= 0xF0;
|
|
print("or-assign: {}\n", bco);
|
|
bcx := 0xFF;
|
|
bcx ^= 0x0F;
|
|
print("xor-assign: {}\n", bcx);
|
|
bcs := 1;
|
|
bcs <<= 8;
|
|
print("shl-assign: {}\n", bcs);
|
|
bcr := 256;
|
|
bcr >>= 4;
|
|
print("shr-assign: {}\n", bcr);
|
|
|
|
// Modulo on variables
|
|
mv1 := 17;
|
|
mv2 := 5;
|
|
print("mod-var: {}\n", mv1 % mv2);
|
|
|
|
// Logical (short-circuit)
|
|
print("and: {}\n", true and true);
|
|
print("and-false: {}\n", true and false);
|
|
print("or: {}\n", false or true);
|
|
print("or-false: {}\n", false or false);
|
|
|
|
// Short-circuit verification
|
|
print("short-and: {}\n", false and true);
|
|
print("short-or: {}\n", true or false);
|
|
|
|
// Compound assignment
|
|
ca := 10;
|
|
ca += 5;
|
|
print("ca+=: {}\n", ca);
|
|
ca -= 3;
|
|
print("ca-=: {}\n", ca);
|
|
ca *= 2;
|
|
print("ca*=: {}\n", ca);
|
|
ca /= 6;
|
|
print("ca/=: {}\n", ca);
|
|
|
|
// Precedence
|
|
print("prec1: {}\n", 2 + 3 * 4);
|
|
print("prec2: {}\n", (2 + 3) * 4);
|
|
|
|
// xx explicit cast
|
|
big2 : f64 = 200.7;
|
|
small : u8 = xx big2;
|
|
print("xx-cast: {}\n", small);
|
|
|
|
// Implicit widening conversions
|
|
wu : u8 = 200;
|
|
ws : s64 = wu;
|
|
print("widen-u8-s64: {}\n", ws);
|
|
|
|
wi3 : s32 = 42;
|
|
wf : f64 = wi3;
|
|
print("widen-s32-f64: {}\n", wf);
|
|
|
|
wf32 : f32 = 1.5;
|
|
wf64 : f64 = wf32;
|
|
print("widen-f32-f64: {}\n", wf64);
|
|
|
|
wu2 : u8 = 100;
|
|
ws2 : s16 = wu2;
|
|
print("widen-u8-s16: {}\n", ws2);
|
|
|
|
// More xx narrowing
|
|
xl : s64 = 12345;
|
|
xs : s32 = xx xl;
|
|
print("xx-s64-s32: {}\n", xs);
|
|
|
|
xd : f64 = 1.5;
|
|
xf : f32 = xx xd;
|
|
print("xx-f64-f32: {}\n", xf);
|
|
|
|
xdf : f64 = 7.9;
|
|
xdi : s32 = xx xdf;
|
|
print("xx-f64-s32: {}\n", xdi);
|
|
}
|