Files
monkey/bench.sh
csmith 862119e90e
Some checks failed
Build / build (push) Successful in 9m50s
Publish Image / publish (push) Failing after 49s
Test / build (push) Successful in 10m55s
lots o fixes
2024-04-01 18:18:45 -04:00

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"