2017-11-12 01:38:50 +01:00
|
|
|
#include <iostream>
|
2017-11-13 02:16:33 +01:00
|
|
|
#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");
|
2017-11-12 01:38:50 +01:00
|
|
|
std::cin.get();
|
|
|
|
|
return 0;
|
2024-06-06 13:37:13 +02:00
|
|
|
}
|