mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
12 lines
112 B
V
12 lines
112 B
V
fn abc() {
|
|
go fn () {}()
|
|
}
|
|
|
|
fn test_if_threads() {
|
|
$if threads {
|
|
assert true
|
|
} $else {
|
|
assert false
|
|
}
|
|
}
|