From 6840bf6859db67d0e2120074d2ea44fc3e7af29e Mon Sep 17 00:00:00 2001 From: Balhau Date: Thu, 2 Jan 2025 17:52:21 +0000 Subject: [PATCH] Refactor readme --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8f6f22d..0dfeb90 100644 --- a/README.md +++ b/README.md @@ -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 -```