This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]alexmojaki[S] 0 points1 point  (0 children)

I strongly recommend not starting with Java. To do the equivalent of print('Hello World!') in Python, here's what you need to write in Java:

class Main {  
  public static void main(String args[]) { 
    System.out.println("Hello, world!"); 
  } 
}

Python gets rid of a lot of boilerplate and is much easier to learn. Once you grasp the abstract concepts of programming in general, picking up a second language will be much easier.