|
|
|
|
|
by alrlroipsp
1318 days ago
|
|
> At first glance it looks a lot like Go But, this is not at all how go looks: fn add(a: i32, b: i32) => i32 {
return a+b
}
It looks heavily inspired from the syntax used in rust or zig tho. (fn keyword, variable type syntax, return value)> what are the differences or use case vs just using Go? - go has a different syntax, different keywords, different ecosystem and so on. - go is a general purpose programming language, while wa is explicit in targeting wasm. I don't see any special similarities more than they are c-style family languages. |
|