From what I can tell, this is a fork of the V programming language (https://vlang.io/). It even still refers to the language as "V" in the docs. That in itself would be fine, but whoever created this repo seems to be trying to pass this off as their own language, which just seems disingenuous at best.
Neat! I was curious why types came after the variable name for structs, but for functions they came before the variable name. Are you in the middle of transitioning from one to the other right now?
e.g.
struct MyStruct {
x int
}
struct MyStruct2 {
y string
}
func Int add(Int x, Int y) {
return x + y
}
8 comments
[ 6.4 ms ] story [ 27.6 ms ] threadhttps://github.com/vlang/v/blob/master/doc/docs.md
e.g.
(both from https://github.com/adorad/adorad/blob/dev/docs/docs.md)Am I missing something?