racket/collects/honu/examples/cond-test.honu
Stevie Strickland 7dbb99d3c6 merged 292:296 from branches/sstrickl
svn: r297
2005-07-02 04:03:02 +00:00

6 lines
88 B
Plaintext

int x = cond {
1 > 3 => 4;
5 < 6 => 2;
else 8;
};