x := y // say y is of type int
// rather than in C/C++ & Java
int x = y;
So you just declare the type once, and don't have to repeatedly declare it
x := y // say y is of type int
// rather than in C/C++ & Java
int x = y;
So you just declare the type once, and don't have to repeatedly declare it