From 337c179206017448493c9595321b5fe070cb271a Mon Sep 17 00:00:00 2001 From: David Senk Date: Thu, 7 Sep 2023 20:23:08 -0400 Subject: [PATCH] updated help --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 4ff324e..81fc717 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,19 @@ +#RPN Calc + +How to use: + +Requires rust to be installed. + +Clone the repo: + + git clone git@github.com:davidsenk/rpn.git + +Build and run: + + # cd rpn + + # cargo run + ``` This is an RPN (Reverse Polish Notation) calculator program. This works by pushing numbers to a stack, and then completing operations on the pushed numbers in the order that they were added to the stack.