Week 1: Introduction to Programming
Unfortunately, one does not learn programming in a week. But here is the first step, the “Hello, World!” program:
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}