6LR/main.cpp

15 lines
270 B
C++
Raw Normal View History

2024-12-11 12:05:03 +04:00
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
2024-12-11 12:10:06 +04:00
}
void lab2Function() {
std::cout << "This is Lab 2!" << std::endl;
}
int main() {
lab2Function();
return 0;
2024-12-11 12:13:56 +04:00
}
//gguhuhuiuh