11 lines
212 B
Bash
11 lines
212 B
Bash
#!/usr/bin/sh
|
|
|
|
rustc -o it_test_rs it_test.rs
|
|
gcc -o it_test_c it_test.c
|
|
javac It_Test.java
|
|
|
|
./it_test_rs > test_rust.txt
|
|
./it_test_c > test_c.txt
|
|
java It_Test > test_java.txt
|
|
python it_test.py > test_python.txt
|