7 lines
87 B
Bash
7 lines
87 B
Bash
#!/usr/bin/env bash
|
|
|
|
mkdir build
|
|
cd build
|
|
clang -o first ../test/main.cpp
|
|
./first
|
|
cd .. |