6 lines
130 B
Plaintext
6 lines
130 B
Plaintext
unit core;
|
|
|
|
pub error Error { Invalid = 1, Io = 2, }
|
|
pub fn panic(msg: str, file: str, line: u32) { }
|
|
pub fn assert(ok: bool) { }
|