Some checks failed
CI / build-test-release (push) Failing after 7m15s
9 lines
223 B
C++
9 lines
223 B
C++
// 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);
|
|
}
|