about summary refs log tree commit diff
path: root/Examples/States/Program.cs
blob: 8fc42b859b049db1641a6cc2eae1a472d33d0675 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace StatesSample
{
    public static class Program
    {
        private static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}