blob: bad74a2a3cefd13c7aeabf575de259bf4a2905c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
fn altlit(int f) -> int {
alt (f) {
case (10) {
log "case 10";
ret 20;
}
case (11) {
log "case 11";
ret 22;
}
}
}
fn main() {
assert (altlit(10) == 20);
assert (altlit(11) == 22);
}
|