summaryrefslogtreecommitdiff
path: root/oop/06-encapsulation/AccountTest.java
blob: 9242ceaa6197f3b2610722116589fe58e779be57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public class AccountTest {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		Account a1 = new Account(); // Instantiation of 'Account' class
		
		a1.setBalance(200.0);
		
//		a1.deposit(100.0);
//		a1.withdraw(10.0);
	}

}