Refactor readme

This commit is contained in:
Balhau 2025-01-02 17:52:21 +00:00
parent 96b52a1583
commit 6840bf6859

View file

@ -1,18 +1,16 @@
# Profiling
```
# Compile it
## Compile it
go build
# Test it
## Test it
go test
# Profile CPU
## Profile CPU
go test -cpuprofile cpu.prof -bench .
# Visualize profiled data
## Visualize profiled data
go tool pprof cpu.prof
```