Why is it necessary to write func in go before declaring a function; if in C, when parsing a function, there is no such need?
Why "func sum(a, b int) int {...}" can't be "sum(a, b int) int {...}"
Why is it necessary to write func in go before declaring a function; if in C, when parsing a function, there is no such need?
Why "func sum(a, b int) int {...}" can't be "sum(a, b int) int {...}"