您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
381 B

  1. using System;
  2. using System.IO;
  3. namespace SuperBASIC
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Library lib = new Library();
  10. lib.AddFunction(new Functions.Print(), 1, "PRINT");
  11. lib.AddFunction(new Functions.Multiply(), 2, "MULTIPLY");
  12. Runtime r = new Runtime(lib);
  13. r.OpenFile(Directory.GetCurrentDirectory() + "\\Test.basic");
  14. r.Run();
  15. }
  16. }
  17. }