Skip to content

Commit

Permalink
Fix Debug error
Browse files Browse the repository at this point in the history
  • Loading branch information
APN-Pucky committed Jun 11, 2021
1 parent 70b173c commit 98601ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/TeXCalc/debug/DebugInter.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package TeXCalc.debug;

import java.io.IOException;

import TeXCalc.exec.Inter;
import TeXCalc.util.IO;

public class DebugInter {
public static void main(String... args) {
public static void main(String... args) throws IOException {
System.out.println("".matches("In\\[\\d+\\]:=.*"));
Inter i = new Inter("/home/apn/.local/bin/math");
System.out.println(i.input(IO.loadFile("run.m")));
Expand Down

0 comments on commit 98601ca

Please sign in to comment.