← index
MasterX_System/cmd/modules/ex1/mod.cpp
Source: MasterX_System/cmd/modules/ex1/mod.cpp
#include"ast.hpp"
extern "C" {
    int HelloWorldCommand(const std::vector<cmd::Argument>& args, std::istream& input, std::ostream& output) {
        output << "Hello, World!" << std::endl;
        return 0;
    }
}