Switched from unix to crossplatform newline character

This commit is contained in:
2021-08-08 22:00:29 +03:00
parent 6a17551d5c
commit ca3b56ffed

View File

@@ -121,7 +121,7 @@ namespace calculator
string arrow = "^".PadLeft(prepend.Length + 1);
return prepend + tokens[pos] + append + '\n' + arrow;
return prepend + tokens[pos] + append + Environment.NewLine + arrow;
}
private object convertOne(int i)