On Tue, Nov 26, 2013 at 2:26 PM, Oleku Konko <
oleku...@gmail.com> wrote:
> After 3 months with this language an just discovered i could overwrite some
> built in function. My question is
>
> - Is there any concept of reserved words in go
Yes, just check the specs:
http://golang.org/ref/spec#Keywords
> - (If Yes) Why am i able to overwrite this functions and more
Because they're not reserved words, but only identifiers predeclared
in the universe scope.
> - (If Yes) Is this a good language design Idea / Why
IMO yes, but note the "O", ie. your preferences may vary and
rationalizing any opinion is not always helpful.
-j
PS: I suggest everyone to read the specs in the first day.