mirror of
https://github.com/aljazceru/turso.git
synced 2026-02-11 03:04:22 +01:00
This PR add the `.exit ?<CODE>` command, which will allow limbo to exit with the specified code (similar to SQLite3 and DuckDB). ```bash echo '.exit' | cargo run -p limbo ; echo $? # ... # 0 echo '.exit 1' | cargo run -p limbo ; echo $? # ... # 1 ``` Reviewed-by: Preston Thorpe (@PThorpe92) Closes #978