v2 / vlib / v / tests / concurrency / spawn_with_cond_fncall_test.v
8 lines · 7 sloc · 166 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1fn test_main() {
2 spawn print_messages_to_console_while_gg_is_gging()
3}
4
5@[if debug]
6fn print_messages_to_console_while_gg_is_gging() {
7 println('doing something')
8}
9