export module Greeter; import std; export std::string Greet(std::string_view name) { return std::format("hello, {}!", name); }