From cf3f19e4f69cdfe0f98ff259c8780ee94ca20bc4 Mon Sep 17 00:00:00 2001 From: xushiwei Date: Wed, 15 May 2024 21:09:25 +0800 Subject: [PATCH] README: demo --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index c8e281f..f6e86dc 100644 --- a/README.md +++ b/README.md @@ -18,3 +18,18 @@ cd build.dir ../sqlite/configure --enable-shared sudo make install ``` + +## Demos + +The `_demo` directory contains our demos (it start with `_` to prevent the `go` command from compiling it): + +* [sqlitedemo](_demo/sqlitedemo/demo.go): a basic sqlite demo + +### How to run demos + +To run the demos in directory `_demo`: + +```sh +cd # eg. cd _demo/sqlitedemo +llgo run . +```