Created
February 26, 2025 21:54
-
-
Save Zaryob/db66a45b17f0d9345d5e8ab5b0c44fd5 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 MyModule; // Modülü içe aktar | |
#include <iostream> | |
int main() { | |
std::cout << add(3, 4) << std::endl; // 7 | |
// subtract(3, 4); // Hata: subtract dışa açık değil | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment