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:05:03 +04:00
|
|
|
}
|