easy_safe

An easy unstable crate to save strings into a map that is saved on the disk creates a new map environment with the specified name the name corresponds to the file saved and loaded in your filesystem If the file is already there it will load from that file

This means you can always come back and access your file if you call it with the right name

Example

```rust use easysafe::{createorloadmap_env, MapEnv};

let mut mapenv: MapEnv = createorloadmapenv("somename"); mapenv.put("somekey", "somevalue"); let value = mapenv.get("somekey").unwrap(); asserteq!(value, "somevalue");

let mut samefilemapenv: MapEnv = createorloadmapenv("somename"); let alsothevalue = samefilemapenv.get("somekey").unwrap(); assert_eq!(value, "somevalue"); ```