testcommit
This commit is contained in:
10
main.cpp
Normal file
10
main.cpp
Normal file
@ -0,0 +1,10 @@
|
||||
#include <iostream>
|
||||
/*Директива include подключает содержимое модуля iostream,
|
||||
*дающего доступ к средствам ввода-вывода ЦМД.
|
||||
*iostream - модуль стандартной библиотеки.
|
||||
*Классы - cin (ввод) и cout (вывод).*/
|
||||
|
||||
int main() {
|
||||
std::cout << "Hello, World!" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user