11 lines
148 B
Plaintext
11 lines
148 B
Plaintext
const Error = error{
|
|
unexpected_result,
|
|
};
|
|
|
|
const expect(ok: bool) Error!void {
|
|
if (!ok) {
|
|
return Error.unexpected_result;
|
|
}
|
|
}
|
|
|