3456789
import com.luxoft.dnepr.courses.regular.unit14.controller.MainController; public class Program { public static void main(String[] args) { new MainController().start(); }
2021222324252627282930
initialize(); } private void initialize() { try { vocabulary = new Vocabulary(); } catch (IOException e) { System.out.println(String.format(ERROR_MESSAGE, Vocabulary.SONNETS_FILE)); } anInterface = new ConsoleInterface(System.in, System.out); }
24252627282930
try { vocabulary = new Vocabulary(); } catch (IOException e) { System.out.println(String.format(ERROR_MESSAGE, Vocabulary.SONNETS_FILE)); } anInterface = new ConsoleInterface(System.in, System.out); }