labs-edaf30/lab1/hello.cc

6 lines
97 B
C++
Raw Permalink Normal View History

2024-11-11 18:06:07 +01:00
#include <iostream>
int main(int argc, char *argv[]) {
std::cout << "Hello" << std::endl;
}