Files
rxcc/test

10 lines
123 B
Plaintext
Raw Normal View History

2026-01-29 16:59:26 -05:00
#!/bin/bash
gcc c/tests/stage_2/valid/$1.c
gcc bin/$1.s -o my.out
echo "GCC:"
./a.out
echo $?
echo "RXCC"
./my.out
echo $?