コード例 #1
0
ファイル: Notation.cs プロジェクト: datiezhu/Intactus-legacy
        public static string Generate(string text)
        {
            //
            // SOME CHANGES BEFORE WE EVEN START
            //

            text = text.Replace("->", "→");

            //
            // DONE, WE'RE READY TO GO
            //

            return(Notation.MasterWrapper(Notation.FunctionReplacer(text)));
        }