jpp/lab0/helloworld.cpp

7 lines
86 B
C++
Raw Normal View History

2024-03-22 13:11:09 +01:00
#include <iostream>
int main() {
std::cout << "Hello, World!\n";
return 0;
}