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

9 lines
223 B
Text
Raw Normal View History

2026-07-23 01:24:42 +02:00
// 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);
}