mirror of
https://github.com/vlang/v.git
synced 2025-09-14 06:52:36 +03:00
12 lines
131 B
V
12 lines
131 B
V
module context
|
|
|
|
const none_ = IError(&None{})
|
|
|
|
struct None {
|
|
msg string
|
|
code int
|
|
}
|
|
|
|
fn (_ None) str() string {
|
|
return 'none'
|
|
}
|