8 lines
51 B
Bash
8 lines
51 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
g++ -o main main.cpp
|
||
|
|
||
|
./main
|
||
|
|
||
|
rm main
|