12 lines
197 B
C#
12 lines
197 B
C#
using System;
|
|
|
|
namespace TestApp
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("This is a test app");
|
|
}
|
|
}
|
|
}
|