mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
9 lines
136 B
C++
9 lines
136 B
C++
|
#include <stdio.h>
|
||
|
#include <iostream>
|
||
|
|
||
|
int main(int argc, char const *argv[]) {
|
||
|
|
||
|
std::cout << "Start..." << std::endl;
|
||
|
|
||
|
return 0;
|
||
|
}
|