v2 / vlib / v / slow_tests / inout / go_print.vv
7 lines · 7 sloc · 107 bytes · 6a32c810703f4ec0c39fe18298ebe6c40acac8f1
Raw
1fn main() {
2 g := spawn print([1, 2, 3])
3 g.wait()
4 println('')
5 g2 := spawn print([4, 5, 6])
6 g2.wait()
7}
8