comparison defical-sharp/defical-cli/threader.cs @ 0:ebed2bd0d300

Initial import from svn. History be damned.
author Edho P. Arief <me@myconan.net>
date Fri, 02 Apr 2010 23:11:57 +0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:ebed2bd0d300
1 using System;
2
3 namespace defical_cli
4 {
5 public partial class Program
6 {
7 private partial class main
8 {
9 private void go()
10 {
11 switch (this.algorithm)
12 {
13 case "backtrack":
14 {
15 goBT();
16 break;
17 }
18 default:
19 {
20 Console.WriteLine("Not implemented!");
21 break;
22 }
23 }
24 }
25 }
26 }
27 }