Go wanted to be what Odin is
-- 13:08
I was surfing through yt, and then found out about this language called odin, (with a vague memory hearing about it once, but again that could be deja vu)
then, I was like Let's try it out who's stopping us innit?
then, I started to program in it for a while with something I heard alot from Tsoding, but i never did.
I turned everything that is related to the internet, downloaded some videos of Bad Trip and the docs.
I started to program in it and it felt very simple, it struck the right balance between the usecases of modern languages like Rust (and it's great compiler) and Go with memory safety and the simplicity of C lang, where the code is readable (but in the case of C, it's logic will take you by storm)
and the best part of it is the two iterators in a for loop!
odin str: string = "Hello" value: string index: int for index,value in str { fmt.println(value, index) }
this is what it looks like, It's going to print out
stdout H 0 e 1 l 2 l 3 o 4