const std = @import(β€œstd”); const warn = std.debug.warn;

fn add_floats(x: f16, y: f16) f16 {

return x + y;

}