/* There are 4 kinds of basic statement types: 1. Declaration int x; JFrame j; 2. Assignment x = 79; j = new JFrame(); 3. return return 3; return "This" + " 4324"; 4. method call j.show(); "this".length(); More complex: if(b) { } if(b) { } else { } if(b1) { } else if(b2) { } if(b1) { } else if(b2) { } else { } */