12 lines
230 B
C#
12 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}");
|
|
}
|
|
}
|
|
}
|