singrdk/base/Applications/Hello/Hello.cs

26 lines
694 B
C#
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
////////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Note: Simple Singularity test program.
//
using System;
2008-11-17 18:29:00 -05:00
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyKeyFileAttribute("public.snk")]
[assembly: System.Reflection.AssemblyDelaySignAttribute(true)]
2008-03-05 09:52:00 -05:00
namespace Microsoft.Singularity.Applications
{
public class Hello
{
public static int Main(String[] args)
{
Console.WriteLine("Hello World!");
return 0;
}
}
}