The Kraken compiler now compiles programs automatically, moving this functionality from the tester in preperation for making test_compiler not a test
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
#include "util.h"
|
||||
|
||||
int ssystem(std::string command) {
|
||||
return system(command.c_str());
|
||||
}
|
||||
std::string intToString(int theInt) {
|
||||
std::stringstream converter;
|
||||
converter << theInt;
|
||||
|
||||
Reference in New Issue
Block a user