mirror of
https://github.com/ProgramSnail/build_system_2022.git
synced 2025-12-06 00:48:42 +00:00
10 lines
173 B
C++
10 lines
173 B
C++
#include "interactive_mode.hpp"
|
|
#include "file_mode.hpp"
|
|
|
|
int main(int argc, char** argv) {
|
|
if (argc < 2) {
|
|
interactiveMode();
|
|
} else {
|
|
fileMode(argv[1]);
|
|
}
|
|
}
|