8 lines
177 B
Bash
8 lines
177 B
Bash
# Running the program shows that we executed about
|
|
# 40,000 operations.
|
|
$ go run atomic-counters.go
|
|
ops: 40200
|
|
|
|
# Next we'll look at mutexes, another tool for managing
|
|
# state.
|