limbo/cli
Pekka Enberg 3deac98d40 cli: Make pretty mode pretty like DuckDB
DuckDB is pretty, I want to be pretty!

```
limbo> CREATE TABLE t(x); INSERT INTO t VALUES (1), (2), (3);
limbo> .mode pretty
limbo> SELECT * FROM t;
┌───┐
│ x │
├───┤
│ 1 │
├───┤
│ 2 │
├───┤
│ 3 │
└───┘
```
2025-02-08 11:39:21 +02:00
..
app.rs cli: Make pretty mode pretty like DuckDB 2025-02-08 11:39:21 +02:00
Cargo.toml centralize Rust integration and regression tests 2025-01-21 15:41:09 +07:00
import.rs core: Move result row to ProgramState 2025-02-06 11:52:26 +02:00
main.rs Feat: Import csv support 2025-01-03 15:20:22 +05:30
opcodes_dictionary.rs fix: lint warnings 2024-07-08 22:43:11 +05:30