11 lines
155 B
Plaintext
11 lines
155 B
Plaintext
-- main.mcl --
|
|
$s = if 42 in [13, -5, 42, 0,] { # make sure the `in` operator works
|
|
"pass"
|
|
} else {
|
|
"fail"
|
|
}
|
|
|
|
test $s {}
|
|
-- OUTPUT --
|
|
Vertex: test[pass]
|