This commit is contained in:
2025-06-30 15:50:20 +02:00
commit 620db6d552
9 changed files with 28874 additions and 0 deletions

10
test.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/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