public void Start() { textEditor.CreateCode(); textEditor.Save(); compiler.Compile(); clr.Execute(); }
public string Start() { string res = ""; res = textEditor.CreateCode(); res += " >> " + textEditor.Save(); res += " >> " + compiller.Compile(); res += " >> " + clr.Execute(); return(res); }