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

7 lines
179 B
Text
Raw Normal View History

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