11 lines
215 B
Bash
11 lines
215 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm *.out
|
||
|
|
||
|
clang++-6.0 -std=c++14 -I../helpers/ -o limits.out limits_println.cpp
|
||
|
clang++-6.0 -std=c++14 -I../helpers/ -o println.out printlnDemo.cpp
|
||
|
|
||
|
clang++-6.0 -std=c++14 main_02_MENT.cpp
|
||
|
|
||
|
./a.out
|