mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
13 lines
131 B
V
13 lines
131 B
V
module context
|
|
|
|
const none_ = IError(&None{})
|
|
|
|
struct None {
|
|
msg string
|
|
code int
|
|
}
|
|
|
|
fn (_ None) str() string {
|
|
return 'none'
|
|
}
|