mirror of
https://github.com/apple/pkl.git
synced 2026-04-10 02:43:42 +02:00
19 lines
151 B
Plaintext
Vendored
19 lines
151 B
Plaintext
Vendored
foo {
|
|
when (true) {
|
|
bar = 1
|
|
} else {
|
|
bar = 2
|
|
}
|
|
}
|
|
|
|
bar {
|
|
when (
|
|
new Listing {
|
|
1
|
|
2
|
|
}.contains(1)
|
|
) {
|
|
"1"
|
|
}
|
|
}
|