15 lines
270 B
C++
15 lines
270 B
C++
#include <iostream>
|
|
|
|
int main() {
|
|
std::cout << "Hello, World!" << std::endl;
|
|
return 0;
|
|
}
|
|
void lab2Function() {
|
|
std::cout << "This is Lab 2!" << std::endl;
|
|
}
|
|
|
|
int main() {
|
|
lab2Function();
|
|
return 0;
|
|
}
|
|
//gguhuhuiuh
|