Files
java-design-patterns/state/src/main/java/com/iluwatar/App.java

17 lines
289 B
Java
Raw Normal View History

2014-08-23 08:47:44 +03:00
package com.iluwatar;
public class App
{
public static void main( String[] args )
{
Mammoth mammoth = new Mammoth();
mammoth.observe();
mammoth.timePasses();
mammoth.observe();
mammoth.timePasses();
mammoth.observe();
}
}