Added fib-memo.toy, fixed bugs until it worked

This commit is contained in:
2023-02-04 16:54:59 +00:00
parent 8d278077b1
commit 386201b6e9
7 changed files with 189 additions and 160 deletions

View File

@@ -1,3 +1,9 @@
print " foo \n bar";
var d = ["foo" : ["bar" : ["bazz": ["fizz" : 5]]]];
print d;
d["foo"]["bar"]["bazz"]["fizz"] = 66;
print d;