mirror of
https://git.webmc.xyz/Starlike-Client/Starlike-Client
synced 2025-07-22 21:51:16 -09:00
7 lines
113 B
C++
7 lines
113 B
C++
#include <iostream>
|
|
|
|
int main(int argc, char** argv) {
|
|
std::cout << "hello world!" << std::endl;
|
|
return 0;
|
|
}
|