singrdk/base/Applications/Hello/Hello.cs

24 lines
517 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
////////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: Hello.cs
//
// Note: Simple Singularity test program.
//
using System;
namespace Microsoft.Singularity.Applications
{
public class Hello
{
public static int Main(String[] args)
{
Console.WriteLine("Hello World!");
return 0;
}
}
}