Files
sx/examples/20-any-varargs.sx
agra 5b3d86440b ffi: migrate remaining variadic decls to new ..name: []T form
Stdlib:
- `format` / `print` in std.sx — both move from `args: ..Any` to
  `..args: []Any`. The post-issue-0049 lowering makes this safe
  across module boundaries.
- `open` in fs.sx — `args: ..s32` → `..args: []s32`. Foreign
  C-variadic semantics are preserved (the trailing `, ...` lands
  in the generated `declare` regardless of which surface form is
  used).

Examples:
- `19-varargs.sx` — `sum` / `print_all` migrated.
- `20-any-varargs.sx` — `print_any` / `count` migrated.
- `50-smoke.sx` — `typed_sum` migrated.
- `120-interp-variadic-any.sx` — comment-only update referencing
  the new form.
- `ffi-foreign-cvariadic.sx` — three C-variadic foreign decls
  migrated; header comment refreshed.

Suite stays at 214/214. The legacy `name: ..T` surface form is
still accepted by the parser; rejection follows in a later commit
once specs.md catches up.
2026-05-27 21:30:48 +03:00

48 lines
1.0 KiB
Plaintext

#import "modules/std.sx";
Point :: struct {
x: s32;
y: s32;
}
// 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(s32) 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) -> s32 {
args.len;
}
main :: () -> s32 {
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;
}