mlc/src/help.cpp

12 lines
152 B
C++
Raw Permalink Normal View History

2023-07-16 00:15:31 +00:00
#include "help.h"
#include "iostream"
static const char* help =
#include "generated/help"
;
2023-07-16 00:15:31 +00:00
void printHelp() {
std::cout << help << std::endl;
2023-07-16 00:15:31 +00:00
}