Files
SpCloudCore/SpCloudMain/SpCloudMain.cpp
2024-08-09 21:04:21 +02:00

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;
}