Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
fmt
/
tests
/
go_stmt_expected.vv
14
lines
·
11
sloc
·
202 bytes
·
3ac63cce869c5a0d7ee093864484344ad44474e1
Raw
1
fn my_thread() {
2
println('yo')
3
}
4
5
fn my_thread_with_params(s string) {
6
println(s)
7
}
8
9
fn my_fn_calling_threads() {
10
go my_thread()
11
go my_thread_with_params('yay')
12
13
go my_thread_with_params('nono')
14
}
15