AndreaOrru / zen

Experimental operating system written in Zig
BSD 3-Clause "New" or "Revised" License
443 stars 27 forks source link

Define @panic function #2

Closed AndreaOrru closed 7 years ago

andrewrk commented 7 years ago

It looks like this:

pub fn panic(message: []const u8) -> noreturn {
    // do your thing
}

in the root source file.

AndreaOrru commented 7 years ago

Thanks!