Does Google’s Golang address the problems with languages addressed in Paul’s Graham’s post ‘Why Arc isn’t Especially Object Oriented‘?
Does Google’s Golang address the problems with languages addressed in Paul’s Graham’s post ‘
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
My initial feeling towards this is “It is too soon to tell”
Go supports Function literals (see docs) which if I am reading this correctly allow you to pass functions as params, whether defined elsewhere or created ad-hoc.
This point is far to subjective to answer.
Since go isn’t a truly object oriented language, you can probably solve the problem in whatever fashon you are comfortable with.
Go seems to have an interesting approach to objects, where you are not required to worry / develop large object trees. It looks like the tools are present in the language to structure your data in an object oriented fashion without locking you in to a pure object oriented environment.
…