package jetbrains.mps.build.mps.runner.test.test1; /*Generated by MPS */ import java.io.File; import java.io.IOException; public class MainClass { public static void mpsMain() { System.out.println("Hello from MPS"); File resultFile = new File("ok.log"); try { if (!(resultFile.createNewFile())) { System.err.println("Cannot create new file " + resultFile.getAbsolutePath()); } } catch (IOException e) { System.err.println("Exception while creating new file " + resultFile.getAbsolutePath()); e.printStackTrace(); } } }