From 4a27d7771319ab08cb7d25a80268cf882e7fc1eb Mon Sep 17 00:00:00 2001 From: dm1sh Date: Sun, 8 Aug 2021 17:02:59 +0300 Subject: [PATCH] Added readme --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..319ce72 --- /dev/null +++ b/README.md @@ -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 \ No newline at end of file