Tue, 03 Mar 2026 09:52:20 +0300
meh
| 0 | 1 | #include <iostream> |
| 2 | #include <string> | |
| 3 | ||
| 4 | int main() { | |
| 5 | auto lang = "C++"; | |
| 6 | printf("Hello and welcome to %s\n", lang); | |
| 7 | #ifdef TARGET_OS_OSX | |
| 8 | printf("meow"); | |
| 9 | #endif | |
| 10 | ||
| 11 | for (int i = 1; i <= 5; i++) { | |
| 12 | std::cout << "i = " << i << std::endl; | |
| 13 | } | |
| 14 | ||
| 15 | return 0; | |
| 16 | } |