1
0

15 lines
421 B
Bash
Raw Normal View History

2025-02-11 09:28:02 -05:00
#!/bin/sh
hyperfine \
--shell none \
--prepare 'sync' \
--warmup 5 \
'../../target/release/dust addictive_addition.ds' \
'node addictive_addition.js' \
'deno addictive_addition.js' \
'bun addictive_addition.js' \
'python addictive_addition.py' \
2024-12-18 06:00:42 -05:00
'lua addictive_addition.lua' \
2025-02-11 09:28:02 -05:00
'luajit addictive_addition.lua' \
2024-12-18 06:00:42 -05:00
'ruby addictive_addition.rb' \
'java addictive_addition.java'