1
0
Fork 0

Syncing with codecrafters-io/languages

Created by https://github.com/codecrafters-io/languages
This commit is contained in:
Paul Kuruvilla 2022-02-08 01:08:32 +00:00
parent cdc4f28f60
commit eab25fff58
1 changed files with 3 additions and 14 deletions

View File

@ -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: <n>"
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