import com.hotmoka.examples.patterns.factory.chainstores.ny.NYPizzaFactory;
public class Main {
public static void main(String[] args) {
NYPizzaFactory nyStrategy = new NYPizzaFactory();
PizzaChainStore alPacino = new PizzaChainStore(nyStrategy);
Pizza cheese1 = alPacino.orderPizza("cheese");
ChicagoPizzaFactory chicagoStrategy = new ChicagoPizzaFactory();
PizzaChainStore venezia = new PizzaChainStore(chicagoStrategy);