How do you optimally learn a new programming language?
1–4 of 4 posts
Re: How do you optimally learn a new programming language?
#2Use it to exercise Advent of Code. Much more fun than leetcode and it has an ending.
Re: How do you optimally learn a new programming language?
#3I usually learn the test framework and then write a test demonstrating language every feature. As I go along and learn libs I add tests for each little thing. I did with c#, ruby, and js. Also made me really proficient at unit testing
Re: How do you optimally learn a new programming language?
#4I usually learn the test framework and then write a test demonstrating language every feature. As I go along and learn libs I add tests for each little thing. I did with c#, ruby, and js. Also made me really proficient at unit testing
That’s such a brilliant idea. Thank you for sharing.