11 lines
113 B
Bash
11 lines
113 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
# g++ -o output helloworld.cpp
|
|
g++ -o output main.cpp
|
|
|
|
echo "build done"
|
|
|
|
./output
|