* レミリア・スカーレット <
valent...@gmail.com> [200427 12:46]:
> Why you need to write a "func sum(a, b int) int {...}", not "sum(a, b int)
> int {...}"?
> It seems to me that one could do without func keyword.
I believe another reason is that the Go language designers decided that
every top-level syntax element begins with a keyword: package, import,
type, const, var, func. Perhaps this is just for convenience of
parsing, but it greatly simplifies human parsing (readability) as well.
...Marvin