mirror of
https://github.com/yawaflua/SpCloudCore.git
synced 2025-12-08 19:49:28 +02:00
18 lines
227 B
C++
18 lines
227 B
C++
// SpCloudMain.cpp : Defines the entry point for the application.
|
|
//
|
|
|
|
#include "SpCloudMain.h"
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
while (true)
|
|
{
|
|
cout << "Hello ." << endl;
|
|
cout << "Hello 2." << endl;
|
|
}
|
|
|
|
return 0;
|
|
}
|