11 lines
200 B
Java
11 lines
200 B
Java
package com.iluwatar;
|
|
|
|
public class App
|
|
{
|
|
public static void main( String[] args )
|
|
{
|
|
AlchemistShop alchemistShop = new AlchemistShop();
|
|
alchemistShop.enumerate();
|
|
}
|
|
}
|