Added readme

This commit is contained in:
Dmitriy Shishkov 2021-08-08 17:02:59 +03:00
parent b5116eabab
commit 4a27d77713
No known key found for this signature in database
GPG Key ID: 14358F96FCDD8060

15
README.md Normal file
View File

@ -0,0 +1,15 @@
# Reverse Polish notation calculator in .NET C#
Pass RPN expression as one string as an argument.
## Example
```powershell
dotnet run "5 3 +"
# >> 8
dotnet run "10 2 - 5 +"
# >> 13
```
P.S.I still hate OOP, so code is rather imperative