// CSE 142 Lecture 1 // Classes, Printing, Escape Sequences // Our first program. Following tradition, we print 'Hello world!'. public class Hello { public static void main(String[] args) { System.out.println("Hello world!"); } }