1sample/ contains a sample program that can be profiled.
2sample.bin is its x86-64 binary.
3sample.cpu is a profile generated by sample.bin.
4
5To update the binary and profile:
6
7```shell
8go build -o sample.bin ./sample
9./sample.bin -cpuprofile sample.cpu
10```
11