R – A common set of problems to learn new languages

programming-languages

With "Polyglot" programming techniques becoming more relevant, it is almost a necessity to use the "right" PL for the problem. However, learning new languages takes time which usually most project team can't afford. What is the best way to learn a new programming language? Is there a common set of problems that can be solved to reach a certain level of competence?

Best Answer

Well, it depends what you want to do. (web, db, whatever).

Generally I'd want to know:

  • What's the library like, how do I reference it
  • What ORMs are there
  • What build/deployment platforms exist for it
  • How does it handle updates
  • How do I do general things, like:
    • DB Access
    • File things
    • Display UI's

and so on.

Related Topic