Crafter.Build/examples/with-module/interfaces/Greeter.cppm

9 lines
221 B
Text
Raw Normal View History

//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);
}