comparison dict.rhope @ 147:f3686f60985d

Sort of working port of framework. Transaction bug seems to be getting in the way. Going to work around, but want the old version in the repo so I can test later.
author Mike Pavone <pavone@retrodev.com>
date Mon, 22 Nov 2010 01:15:02 -0500
parents c9974ac32369
children c40e0faa1c92
comparison
equal deleted inserted replaced
146:1f39e69446f9 147:f3686f60985d
280 Print@Empty Dictionary[dict:out] 280 Print@Empty Dictionary[dict:out]
281 { 281 {
282 out <- Print["Dictionary\n\t{Empty}"] 282 out <- Print["Dictionary\n\t{Empty}"]
283 } 283 }
284 284
285 New Like@Dictionary[in:out]
286 {
287 out <- Dictionary[]
288 }
289
290 New Like@Empty Dictionary[in:out]
291 {
292 out <- in
293 }
294
285 Length@Empty Dictionary[dict:out] 295 Length@Empty Dictionary[dict:out]
286 { 296 {
287 out <- 0 297 out <- 0
288 } 298 }
289 299