blob: 7a1aef58815de34e0bed6f0d277d72b5eeb66977 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
// hw1cst126spring.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
int main()
{
std::cout << "Hello World!\n";
}
|