Update vlang-update-2020-06-17.markdown

This commit is contained in:
Cadey Ratio 2020-06-17 09:39:38 -04:00 committed by GitHub
parent 9a673453db
commit 3cbeb1d3fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -198,6 +198,8 @@ A common problem that shows up when writing multi-threaded code are
to do the same thing at the same time on the same block of memory. This leads to
undefined behavior, which is bad because it can corrupt or crash programs.
[races]: https://en.wikipedia.org/wiki/Race_condition
As an example, consider this program `raceanint.v`:
```