pub fn load_workspace(path: &Path) -> Result<Env, String>
Loads variables from path into a new Env. Recognises: name = 3.14 (Scalar), name = 'str' (Str), name = "str" (StringObj). Unrecognised lines are silently skipped.
path
Env
name = 3.14
name = 'str'
name = "str"