v/vlib/compiler/tests/repl/conditional_blocks/if_else.repl

8 lines
73 B
Plaintext

if false {
println('foo')
} else {
println('bar')
}
===output===
bar