This repository has been archived on 2024-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
lessons/C++/lesson1/task1.cpp
2023-07-16 13:23:25 +00:00

6 lines
72 B
C++

#include <iostream>
int main() {
std::cout << "Hello, world!\n";
}