mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-16 20:59:07 +00:00
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();
|
|
}
|
|
}
|