Skip to content

Instantly share code, notes, and snippets.

@Zaryob
Created February 26, 2025 21:56
Show Gist options
  • Save Zaryob/c483eda21ff14f784f1bd8278cac94d7 to your computer and use it in GitHub Desktop.
Save Zaryob/c483eda21ff14f784f1bd8278cac94d7 to your computer and use it in GitHub Desktop.
import MathModule;
#include <iostream>
int main() {
std::cout << "Multiply: " << multiply(3, 4) << std::endl; // 12
std::cout << "Divide: " << divide(10, 2) << std::endl; // 5.0
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment