improve perf

This commit is contained in:
nora 2021-12-18 00:25:51 +01:00
parent 8de36860af
commit 817a14c3bc
4 changed files with 84 additions and 49 deletions

View file

@ -19,4 +19,17 @@ command = "cat fkasdjfölashjdflksd"
command = "touch uwu.txt"
[side-effect-remove]
command = "rm uwu.txt"
command = "rm uwu.txt"
[compile]
command = "cargo check"
[loop]
command = """
counter=0
while true; do
echo $counter
counter=$((counter+1))
done
"""