8 lines
66 B
Bash
8 lines
66 B
Bash
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
gcc -std=gnu17 -w -Ofast -o xop xop.c
|
|
|
|
exit
|