17 lines
289 B
Java
17 lines
289 B
Java
![]() |
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();
|
||
|
|
||
|
}
|
||
|
}
|