Files
atomic-red-team/ARTifacts/Chain_Reactions/atomic-hello.cs
T

13 lines
340 B
C#
Raw Normal View History

2019-05-31 10:01:25 -05:00
using System;
// C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe atomic-hello.cs
// Expected Output: Hello from Atomic Red Team! \n Press Enter To Close.
public class Program
{
public static void Main()
{
Console.WriteLine("Hello from Atomic Red Team! \n Press Enter To Close.");
Console.ReadLine();
}
}