Y
Hacker News
new
|
ask
|
show
|
jobs
by
ntmartin
5399 days ago
Hi, nice app. Just to be a pedant, there is a syntax error in lesson 5.
if 2 + 3 = 5: print "OK!"
Should be:
if 2 + 3 == 5: print "OK!"
1 comments
DrCatbox
5399 days ago
That was the lesson, to see that the IDE does not compile errors and has syntax highlighting for it.
link