comparison kernel.rhope @ 100:f51c4c17457c

Broken port of parser to compiler
author Mike Pavone <pavone@retrodev.com>
date Mon, 09 Aug 2010 02:03:57 -0400
parents e09c2d1d6d5b
children f4fc0a98088a
comparison
equal deleted inserted replaced
99:e09c2d1d6d5b 100:f51c4c17457c
308 Keys[container:out] 308 Keys[container:out]
309 { 309 {
310 out <- Fold[_Keys[?], (), container] 310 out <- Fold[_Keys[?], (), container]
311 } 311 }
312 312
313 Between[num,low,high:yep,nope]
314 {
315 ,nope <- If[[num]>[low]]
316 {
317 yep,nope <- If[[num]<[high]]
318 }
319 }
320