iOS lock step keyboard + metal

This commit is contained in:
agra
2026-05-18 17:40:10 +03:00
parent b43472e6ab
commit f9ecf9d00e
68 changed files with 4794 additions and 203 deletions

View File

@@ -0,0 +1,10 @@
// Helper that defines the impl. issue-0033's user file does NOT
// directly import this — that's the whole point of the test.
#import "modules/std.sx";
#import "./issue-0033-types.sx";
impl Into(Wrap) for s64 {
convert :: (self: s64) -> Wrap {
.{ v = self * 10 };
}
}