Showing
1 changed file
with
20 additions
and
0 deletions
echo.cpp
0 → 100644
| 1 | +// OSS.cpp : This file contains the 'main' function. Program execution begins and ends there. | ||
| 2 | +// | ||
| 3 | + | ||
| 4 | +#include <iostream> | ||
| 5 | + | ||
| 6 | +int main() | ||
| 7 | +{ | ||
| 8 | + std::cout << "Hello World!\n"; | ||
| 9 | +} | ||
| 10 | + | ||
| 11 | +// Run program: Ctrl + F5 or Debug > Start Without Debugging menu | ||
| 12 | +// Debug program: F5 or Debug > Start Debugging menu | ||
| 13 | + | ||
| 14 | +// Tips for Getting Started: | ||
| 15 | +// 1. Use the Solution Explorer window to add/manage files | ||
| 16 | +// 2. Use the Team Explorer window to connect to source control | ||
| 17 | +// 3. Use the Output window to see build output and other messages | ||
| 18 | +// 4. Use the Error List window to view errors | ||
| 19 | +// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project | ||
| 20 | +// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file |
-
Please register or login to post a comment