Savesys

A simple, expandable, variable-based save system.

Forked from the save system used in my other project, The Plains.

Functions

Example Usage

``` extern crate savesys; use savesys::*;

if ! exists("data.txt") { generate("data.txt", 20) };

let savevec: Vec = savesys::reader("data.txt"); if ! savevec[5] == 7 { writer("data.txt", 5, 7) } ```