Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
Beta 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
9xbt committed Apr 19, 2023
1 parent e863a16 commit a92f789
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions 9xCode/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@ internal static class Program
{ "Yellow", Yellow }, { "White", White },
};

static string ReplaceSpecialCharacters(string text)
{
return text.Replace("\\n", "\n");
}

[STAThread]
static void Main()
{
Expand Down Expand Up @@ -61,7 +56,7 @@ static void Main()
Retry:
try
{
string line = ReplaceSpecialCharacters(code[i].Trim());
string line = code[i].Trim().Replace("\\n", "\n");

#region Globals

Expand Down

0 comments on commit a92f789

Please sign in to comment.