コード例 #1
0
 public void Start()
 {
     textEditor.CreateCode();
     textEditor.Save();
     compiller.Compile();
     clr.Execute();
 }
コード例 #2
0
        public string Start()
        {
            string res = "";

            res  = textEditor.CreateCode();
            res += " >> " + textEditor.Save();
            res += " >> " + compiller.Compile();
            res += " >> " + clr.Execute();
            return(res);
        }