1
0

関数定義の構文解析を実�

This commit is contained in:
otya128
2015-06-13 19:12:36 +09:00
parent 09ff06ec56
commit 4b530f492e
5 changed files with 175 additions and 2 deletions

View File

@@ -63,6 +63,12 @@ END
@A
?\"SUBROUTINE TEST\"
RETURN
DEF A()
?\"FUNCTION A\"
END
DEF B(A,B[],C)
?\"FUNCTION B\"
END
");
version(none) auto parser = new Parser(readText("FIZZBUZZ.TXT").to!wstring);
auto vm = parser.compile();