Switched from unix to crossplatform newline character

This commit is contained in:
Dmitriy Shishkov 2021-08-08 22:00:29 +03:00
parent 6a17551d5c
commit ca3b56ffed
No known key found for this signature in database
GPG Key ID: 14358F96FCDD8060

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)