Files
sx/examples/test_arena2.sx
agra 6a920dbd2c ir
2026-02-28 18:03:38 +02:00

13 lines
211 B
Plaintext

#import "modules/std.sx";
Phys :: struct {
x, y: f32;
GRAVITY :f32: 9.81;
MAX_SPEED :: 100;
}
main :: () {
print("gravity: {}\n", Phys.GRAVITY);
print("max speed: {}\n", Phys.MAX_SPEED);
}