Jose Mendoza

Results 25 comments of Jose Mendoza

`?int`: value of type `int` or `none` `!int`: value of type `int` or error

Works: ```v module main struct TestError { Error } type Any = TestError | int fn get_error() ?Any { return IError(TestError{}) } fn main() { e := get_error() or {...

@danieldaeschle I think this issue can be closed, I don't see bad coloring in the syntax

O sea, ¿un compilador escrito en Latino que compile scripts al bytecode que interpreta Latino?

@txgruppi please fix VLS ```v server/diagnostics.v:12:24: error: index_after() returns an option, so it should have either an `or {}` block, or `?` at the end 10 | } 11 |...

@txgruppi the PR is fine, only a small fix was missing in `ved`, which I have already done: https://github.com/vlang/ved/pull/140.

@N3koSempai ¿por qué Nim?

Maybe something like: ```v import os // from vlib import .os // from cwd ```

> The most simple solution is not to allow modules with names that match builtin V modules at all. @JoanaBLate as simple as this ```v import os // from vlib...