// SPDX-License-Identifier: MIT // SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts® export module Greeter; import std; export std::string Greet(std::string_view name) { return std::format("hello, {}!", name); }