You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <memory>
|
|
|
|
#include "Compiler.hpp"
|
|
|
|
int main(int args, const char* argv[]) {
|
|
dumb::ArgumentList arguments(argv + 1, argv + args);
|
|
|
|
std::unique_ptr<dumb::Compiler> app = std::make_unique<dumb::Compiler>(arguments);
|
|
|
|
return 0;
|
|
}
|
|
|