Revert the in prog commit that was lost, as the scoping branch is now handeling it

This commit is contained in:
Nathan Braswell
2014-12-19 18:45:29 -05:00
parent 5fb40c3bd1
commit f35b4a8d48
11 changed files with 81 additions and 153 deletions

View File

@@ -1,3 +1,2 @@
1337
1337
Destroyed!

View File

@@ -16,10 +16,7 @@ typedef AbleToBeDestroyed (Destructable) {
intVec.addEnd(7);
for (|int| i = 0; i < intVec.size; i++;)
print(intVec.at(i));
println();
for (|int| i = 0; i < intVec.size; i++;)
print(intVec[i]);
println();
|vector<AbleToBeDestroyed>*| desVec = new<vector<AbleToBeDestroyed>>()->construct();