1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 19:36:26 +02:00
Files
uni/ccv/sheet1/hello.cpp
2017-04-04 15:00:42 +02:00

13 lines
153 B
C++

//
// Created by jim on 4/4/17.
//
#include <iostream>
#include <string>
using namespace std;
int main()
{
std::cout << "Hello world!";
return 0;
}