Files
medicallib/examples/main.cpp
T
google-labs-jules[bot] 3b29526b9e Add build scripts and update .gitignore
This commit introduces build scripts for both Windows (`build.bat`) and Linux/macOS (`build.sh`) to simplify the build process.

It also updates the `.gitignore` file to a more comprehensive version that includes common patterns for C++ projects and various IDEs.
2025-08-18 08:15:49 +00:00

9 lines
151 B
C++

#include <iostream>
#include "Library.h"
int main() {
int result = add(2, 3);
std::cout << "2 + 3 = " << result << std::endl;
return 0;
}