vlang / rfcs

RFCs for changes to V

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[REJECTED] Optional Typing on variable declaration

igotfr opened this issue · comments

Optional Typing on variable declaration

i int := 45


type Int_string = u8 | string

mut i_s Int_string := u8(77)
i_s = 'berg'