11 lines
176 B
Bash
11 lines
176 B
Bash
#!/usr/bin/env bash
|
|
|
|
currentBranch="$(git branch --show-current)"
|
|
|
|
N="${1:-35}"
|
|
|
|
hyperfine \
|
|
-w 5 \
|
|
-p "make build" \
|
|
-n "$currentBranch" \
|
|
"./monkey examples/fib.m $N" |