(String[] args)
| 7 | |
| 8 | public class BasicFileInterpreter { |
| 9 | public static void main(String[] args) |
| 10 | throws ParseException, FileNotFoundException |
| 11 | { |
| 12 | run(new BasicParser(), new BasicEnv(), args[0]); |
| 13 | } |
| 14 | |
| 15 | public static void run(BasicParser bp, Environment env, String fileName) |
| 16 | throws ParseException, FileNotFoundException |