11 lines
258 B
C++
11 lines
258 B
C++
#include "compiler/compiler_spec_helper.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
const char *args[] = {
|
|
"",
|
|
"--no-color",
|
|
"--only="
|
|
// "compiles the javascript"
|
|
};
|
|
return bandit::run(4, const_cast<char **>(args));
|
|
}
|