Codeforces/.common/rust/init.sh
Matej Focko bbe76f33d6
chore(rs): create a template and adjust gitignore
Signed-off-by: Matej Focko <me@mfocko.xyz>
2023-07-23 21:33:09 +02:00

7 lines
87 B
Bash

#!/bin/sh
for TASK in a b c d e f g h;
do
cp src/main.rs src/bin/$TASK.rs;
done;