vote up 4 vote down star
5

There are some resources, such as P-99 and (too low programming/math ratio for me) Project Euler, which offer quick or interesting problems to implement.

Do you have a usual list of problems you try to solve when learning a new language?

flag
Really, I did not find it that bad, though the use of the brackets could have been better it still makes perfect sense. Maybe read it a bit slower? – Shhnap Oct 23 at 4:43
1  
One of the first problems I try to solve is 'how do I write tests in this language?' That tends to make solving the next problem easier. – Dave W. Smith Oct 23 at 5:44
Hard to search, but I'm sure this has been done before. Probably more than once. – dmckee Oct 24 at 9:30

2 Answers

vote up 1 vote down

Personally, I will learn a new language with a goal in mind like:

I have heard this language is really good at doing X so I'm going to go learn it and make an X.

I learned ruby so that I could use Ruby on Rails and I think many people might do the same thing. Right now I wanted to learn how to use the eigen2 library and refresh my OpenGL knowledge so I am rewriting my raytracer.

link|flag
Exactly. The first thing I did when learning Python was to play around with list comprehensions and generators. Those were the shiny new toys to play with. – John Kugelman Oct 23 at 4:42
vote up 1 vote down
  1. Hello World
  2. n!
  3. If GUI can be programmed: bounce a ball around
  4. Some basic error logging (if possible)

From there on it's all language dependent, I don't beleive there's a universal list when every programming language has different characteristics

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.