Files
BlitzLLVM/code_compiler/source/main.cpp
T

10 lines
187 B
C++
Raw Normal View History

#include <iostream>
#include "compiler.hpp"
2017-11-11 22:32:30 +01:00
int main(int argc, char** argv) {
2024-06-06 14:04:34 +02:00
blitz::compiler comp;
comp.compile(argv[1], std::string(argv[1]) + ".exe");
std::cin.get();
return 0;
2024-06-06 13:37:13 +02:00
}