Crafter.Build/tests/DependencyLink/fixture/mathlib/Calc.cppm

7 lines
181 B
Text
Raw Normal View History

2026-07-23 01:24:42 +02:00
// SPDX-License-Identifier: LGPL-3.0-only
// SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
export module Calc;
import std;
export int Add(int a, int b) { return a + b; }