Examples in V
// The concurrency model is very similar to Go.
// To run foo() concurrently, just call it with go foo().
// Right now, it launches the function in a new system thread.
// Soon coroutines and the scheduler will be implemented.