public class PassByValue {
	public int test(int year, Message formalHello, Message formalBye) {
		year = 2000;
		formalHello = new Message();
		formalHello.setMessage("What's Up", 10);
		formalBye.setMessage("Take care buddy", 20);
		
		return year;
	}
}