Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 309 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 309 Bytes

GoatDB

This is a joke database

Example:

use goatdb::GoatDb;

fn main() {
    let mut db = GoatDb::new("example.db");
    db.set("hello", &String::from("world"));
    let value = db.get("hello").unwrap();
    println!("result: {}", value);
}

Output:

result: "world"