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.
37 lines
842 B
Plaintext
37 lines
842 B
Plaintext
// M1.0 — expression-bodied function declarations.
|
|
//
|
|
// sx's `=>` body form (already used for lambdas) extends to
|
|
// top-level and struct-member function declarations:
|
|
//
|
|
// name :: (params) -> RetType => expr;
|
|
//
|
|
// Pins three positions: module-top, struct method, niladic.
|
|
|
|
#import "modules/std.sx";
|
|
|
|
double :: (x: i32) -> i32 => x * 2;
|
|
|
|
sum :: (a: i32, b: i32) -> i32 => a + b;
|
|
|
|
answer :: () -> i32 => 42;
|
|
|
|
Point :: struct {
|
|
x: i32;
|
|
y: i32;
|
|
|
|
total :: (self: *Point) -> i32 => self.x + self.y;
|
|
scaled :: (self: *Point, by: i32) -> i32 => (self.x + self.y) * by;
|
|
}
|
|
|
|
main :: () -> i32 {
|
|
print("double: {}\n", double(7));
|
|
print("sum: {}\n", sum(3, 4));
|
|
print("answer: {}\n", answer());
|
|
|
|
p := Point.{ x = 10, y = 20 };
|
|
print("total: {}\n", p.total());
|
|
print("scaled: {}\n", p.scaled(3));
|
|
|
|
0
|
|
}
|