1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00
Files
OpenRCT2/OpenRCT2-cli/main.cpp
2017-05-29 22:38:45 +02:00

16 lines
281 B
C++

//
// main.cpp
// OpenRCT2-cli
//
// Created by Richard Jenkins on 12/05/2017.
// Copyright © 2017 OpenRCT2. All rights reserved.
//
#include <iostream>
int main(int argc, const char * argv[]) {
// insert code here...
std::cout << "Hello, World!\n";
return 0;
}