Title Aug 22, 2023 • 1 min read toc: true comments: true layout: post title: My First Java Notebook! description: Read the title type: Week 1 System.out.println("Hello World"); Hello World int cars = 0; System.out.println("I have " + (cars+1) + " car(s)"); I have 1 car(s) for (int i = 0; i < 3; i++){ System.out.println("CODE"); } CODE CODE CODE