Example #1
0
        public static void Main(string[] args)
        {
            SimpleHistoryExample example = new SimpleHistoryExample();

            example.run(args);
            System.Console.WriteLine("Press ENTER to quit");
            System.Console.Read();
        }
Example #2
0
        static int Main(string[] args)
        {
            SimpleHistoryExample example = new SimpleHistoryExample();

            example.init(args);
            example.run();
            return(0);
        }