Lecture 3
19
if: Bank.java lines 63-68
•Line 62 gets value for variable account  of type BankAccount
•Line 63 tests the value of that variable
•if account == null // no account
–execute line 64
–skip to line 69 (then back to 61 and then to 70)
•else (that is, otherwise)
–skip line 64,65
–execute line 67
–continue at line 69 (then back to 61, then to 62)
•Note how indentation (prettyprinting) helps you see the logic
–