6 lines
58 B
Plaintext
6 lines
58 B
Plaintext
let foo = 1
|
|
match $foo {
|
|
_ if $foo == 1 => 1
|
|
_ => 2
|
|
}
|