summaryrefslogtreecommitdiffstats
path: root/bin/rusti
blob: 9111d0f8ce6404df6298d6b6395c3e86ac5fc4f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

RUSTI_TEMP=$(mktemp -d)
trap "rm -f $RUSTI_TEMP/test $RUSTI_TEMP/test.rs && rmdir $RUSTI_TEMP" EXIT

cd $RUSTI_TEMP
vim test.rs
rustc test.rs
./test