Files
sx/examples/packs/0501-packs-any-varargs.sx
agra 66bdc70bf1 test: group examples into per-category folders
Move examples/*.sx and their expected/ snapshots into per-category
subfolders (examples/<category>/...). Folder = leading filename token,
with ffi-objc/ffi-jni kept whole; filenames are unchanged. The corpus
runner and LSP sweep now discover each category's expected/ dir, while
issues/ stays flat. Example 1058's repo-root-relative companion import
is made file-relative. Path strings embedded in 164 snapshots were
regenerated (path-only changes). Test-layout docs in CLAUDE.md updated.
2026-06-21 14:41:34 +03:00

48 lines
1.0 KiB
Plaintext

#import "modules/std.sx";
Point :: struct {
x: i32;
y: i32;
}
// Print all arguments — accepts any type, dispatches via type-switch
print_any :: (..args: []Any) {
for args (it) {
type := type_of(it);
if type == {
case int: out(int_to_string(cast(i32) it));
case string: out(cast(string) it);
case bool: out(bool_to_string(cast(bool) it));
case float: out(float_to_string(cast(f64) it));
case Point: {
p := cast(Point) it;
out("(");
out(int_to_string(p.x));
out(",");
out(int_to_string(p.y));
out(")");
}
}
out(" ");
}
out("\n");
}
count :: (..args: []Any) -> i32 {
args.len
}
main :: () -> i32 {
print_any(42, "hello", true, 3.14);
// Test with struct
p := Point.{ x=10, y=20 };
print_any("point:", p, 99);
// Test count
out(int_to_string(count(1, 2, 3)));
out("\n");
0
}