testapps/ConsoleAppService/Program.cs (16 lines of code) (raw):
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
using System;
using System.Threading.Tasks;
namespace ConsoleAppService
{
internal class Program
{
private static async Task Main(string[] args)
{
while (true)
{
Console.WriteLine("Hello World!");
await Task.Delay(500);
}
}
}
}