This website works better with JavaScript
Главная
Обзор
Помощь
Вход
hongwenjun
/
cpp
зеркало из
https://github.com/hongwenjun/cpp
Следить
1
В избранное
0
Ответвить
0
Файлы
Задачи
0
Вики
Дерево:
e5b1b134c2
Ветки
Метки
main
cpp
/
examples
/
12_helloworld.cpp
12_helloworld.cpp
103 B
История
Исходник
1
2
3
4
5
6
7
8
9
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, world!" << endl;
return 0;
}