mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-09 23:55:02 +00:00
7 lines
175 B
Bash
Executable file
7 lines
175 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/
|
|
set -euxo pipefail
|
|
|
|
zig build-exe benchmark-dec.zig -O ReleaseFast
|
|
./benchmark-dec
|