Esempio n. 1
0
 /** @param args */
 public static void main(String[] args) {
   Soldier s = new Soldier();
   s.cure();
   s.wound();
   s.wound();
   s.resurrect();
   s.kill();
   s.resurrect();
   s.wound();
   s.kill();
   s.resurrect();
 }