7 lines
71 B
Bash
Executable File
7 lines
71 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
clang++ from_chars.cpp
|
|
./a.out 100 | grep 100
|