extern "c" fn write(c_int, usize, usize) usize; pub fn main() void { print(); } fn print() void { const msg = @intFromPtr("What is up? This is a longer message that will force the data to be relocated in virtual address space.\n"); const len = 104; _ = write(1, msg, len); } // run // // What is up? This is a longer message that will force the data to be relocated in virtual address space. //