extend default to s64

This commit is contained in:
agra
2026-02-11 01:05:21 +02:00
parent 70435d3c85
commit 25e1372731
11 changed files with 754 additions and 208 deletions

View File

@@ -11,9 +11,12 @@ Color :: struct {
main :: () {
p := Point.{10, 20};
c := Color.{255, 128, 0};
pc := &p;
print("p: {}\n", p);
print("c: {}\n", c);
print("n: {}\n", 42);
print("s: {}\n", "hello");
print("b: {}\n", true);
print("&p: {}\n", pc);
print("&p: {}\n", &p);
}