1
0

配列代入の構文解析を実装,配列宣言,配列参照を実装

This commit is contained in:
otya128
2015-06-12 20:25:53 +09:00
parent c050d4e066
commit 61020e9941
6 changed files with 225 additions and 14 deletions

View File

@@ -18,7 +18,9 @@ struct Value
int integerValue;
double doubleValue;
wstring stringValue;
Array!int intArray;
Array!int integerArray;
Array!double doubleArray;
Array!wstring stringArray;
}
this(int value)
{