comparison list.rhope @ 180:c40e0faa1c92

Add Call to Dict and List
author Mike Pavone <pavone@retrodev.com>
date Sun, 19 Jun 2011 10:43:11 -0700
parents 64be565a40c6
children
comparison
equal deleted inserted replaced
179:64be565a40c6 180:c40e0faa1c92
440 440
441 =@List[a,b:out] 441 =@List[a,b:out]
442 { 442 {
443 out <- _=List[a,b] 443 out <- _=List[a,b]
444 } 444 }
445
446 Call@List[list,index:out,notfound]
447 {
448 out,notfound <- [list]Index[index]
449 }
450
451 Call@List Leaf[list,index:out,notfound]
452 {
453 out,notfound <- [list]Index[index]
454 }
455