Added primitive serilization

This commit is contained in:
Nathan Braswell
2015-08-21 11:03:10 -04:00
parent 6a62f03fb4
commit 3aad0263ce
6 changed files with 77 additions and 23 deletions

View File

@@ -51,7 +51,7 @@ obj map<T,U> (Object) {
var key_loc = keys.find(key)
if (key_loc == -1) {
io::println("trying to access nonexistant key-value!")
while (true) {}
/*while (true) {}*/
}
return values.get(key_loc)
}