Add test harness and run the first program (#5)

This commit is contained in:
Patrick Stevens
2025-04-28 20:23:05 +01:00
committed by GitHub
parent 90f95ed6c6
commit 3415b7a73d
14 changed files with 703 additions and 116 deletions

View File

@@ -0,0 +1,12 @@
using System;
namespace HelloWorldApp
{
class Program
{
static int Main(string[] args)
{
return 1;
}
}
}