gooey-suncat/game/src/game.cxx
2024-10-11 16:22:57 +01:00

23 lines
281 B
C++

// Global module fragment, where #includes can happen
module;
import std;
export module game;
export class lib
{
public:
lib();
~lib();
void helloworld();
};
lib::lib() = default;
lib::~lib() = default;
void lib::helloworld()
{
std::print("Hello world!\n");
}