Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
slow_tests
/
inout
/
push_on_closed_channel.vv
7
lines
·
6
sloc
·
108 bytes
·
6a32c810703f4ec0c39fe18298ebe6c40acac8f1
Raw
1
module main
2
3
fn main() {
4
ch := chan int{cap: 100}
5
ch.close()
6
ch <- 1 or { println('Channel closed.') }
7
}
8