13 lines
230 B
C#
13 lines
230 B
C#
|
using System;
|
|||
|
|
|||
|
namespace test_dotnet
|
|||
|
{
|
|||
|
class Program
|
|||
|
{
|
|||
|
static void Main(string[] args)
|
|||
|
{
|
|||
|
Console.WriteLine($"This program should be running on a schedule: {DateTime.Now}");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|