From eab25fff58553d528eb97b4d475200198e6f7f02 Mon Sep 17 00:00:00 2001 From: Paul Kuruvilla Date: Tue, 8 Feb 2022 01:08:32 +0000 Subject: [PATCH] Syncing with codecrafters-io/languages Created by https://github.com/codecrafters-io/languages --- README.md | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index bd1a367..74e4898 100644 --- a/README.md +++ b/README.md @@ -13,19 +13,8 @@ and more. # Passing the first stage -CodeCrafters runs tests when you do a `git push`. Make an empty commit and push -your solution to see the first stage fail. - -```sh -git commit --allow-empty -m "Running tests" -git push origin master -``` - -You should see a failure message that says it expected "number of tables: " -to be present. - -Go to `src/main.rs` and uncomment the `.dbinfo` command implementation. Commit -and push your changes to pass the first stage: +The entry point for your SQLite implementation is in `src/main.rs`. Study and +uncomment the relevant code, and push your changes to pass the first stage: ```sh git add . @@ -35,7 +24,7 @@ git push origin master Time to move on to the next stage! -# Running Your Program Locally +# Setup for stages 2 & beyond 1. Ensure you have `cargo (1.54)` installed locally 1. Run `./your_sqlite3.sh` to run your program, which is implemented in