From 8edca7f0753a811ca8e1f5ab82999eb20a2ff22e Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Mon, 11 Dec 2023 15:40:11 +0000 Subject: [PATCH] Add readme describing repo and how to run tests --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..96d3dba --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Lua Exercises + +This repo contains some Lua exercises along with automated tests for +their solutions. Each file contains a description of the problem and +an area for your solution as well as the tests. Feel free to define +as many functions and constants as you need in the solution area, but +do not modify the tests. + +To run the tests and check your solution for a given exercise, simply +run `lua `. For example, if you were working on the +anagrams exercise, you would run `lua anagrams.lua`. For each +exercise, the tests should run in well under a tenth of a second; if +it takes longer than this you should try to speed up your solution.