From 0d2db2d9bcbcb5ae6aa12fef54b68e799e4b52cf Mon Sep 17 00:00:00 2001 From: Gregory Campbell Date: Thu, 8 Jul 2021 22:06:04 -0400 Subject: [PATCH] Create README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..6165497 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# legacy-algorithm-comparison + +This is a program that is used to compare speed of C, Fortran and Ada running their own verisons of the kmp search algorithm. + +Just run `make` to generate an executable for each language. +You can run the script in C, Fortran or Ada by running `./kmp-c`, `./kmp-fortran` and `./kmp-ada` respectively. + +You can also run `make clean` to clean up the directory.