I need help here definitely!
Guys, tell me how far away I am from the solution, and give me some advice because I don't know exactly what the validator wants here.
There are so many places to make errors here, and I don't want to bang head against the wall.
package com.codegym.task.task27.task2712;
import com.codegym.task.task27.task2712.kitchen.Cook;
import com.codegym.task.task27.task2712.kitchen.Waiter;
import java.io.IOException;
public class Restaurant {
public static void main(String[] args) throws IOException {
Tablet tablet = new Tablet(5);
Cook cook = new Cook("Amigo");
Waiter waiter = new Waiter();
tablet.addObserver(cook);
cook.addObserver(waiter);
tablet.createOrder();
}
}