gobyexample/examples/atomic-counters/atomic-counters.sh
2012-10-21 19:14:04 -04:00

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.