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