Created
February 26, 2025 21:56
-
-
Save Zaryob/c483eda21ff14f784f1bd8278cac94d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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