mirror of
https://github.com/2martens/uni.git
synced 2026-05-07 11:56:26 +02:00
13 lines
153 B
C++
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;
|
|
}
|