st :: struct { a : u64; b : f64; }; main :: () -> void { a : st = undefined; a.a = 2; print(a); }; print :: (value:st)->void{ print_u64 value.a; };