From dd88f8f19726b9334fa21e77aa1a5c6c07cbf194 Mon Sep 17 00:00:00 2001 From: Shivam Sarodia Date: Tue, 12 Sep 2017 00:21:49 -0400 Subject: [PATCH] Fix readme instructions --- README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 43ac53c..e152faf 100644 --- a/README.rst +++ b/README.rst @@ -29,21 +29,21 @@ For command line usage info: :: shivyc - + To create, compile, and run an example program: :: - printf "%s\n" '#include ' >> test.c + printf "%s\n" '#include ' > test.c printf "%s\n" 'int main() { printf("hello, world!\n"); }' >> test.c shivyc test.c - ./out + ./out To run the tests: :: git clone https://github.com/ShivamSarodia/ShivyC.git cd ShivyC python3 -m unittest discover - + Implementation Overview