allow public uses of structs; add sample program

This commit is contained in:
2020-04-12 17:13:08 +01:00
parent fd4a682ade
commit bef39f9b8b
15 changed files with 132 additions and 61 deletions

View File

@@ -1,7 +1,7 @@
#[derive(Debug, Eq, PartialEq)]
pub struct Variable {
pub(crate) id: String,
pub(crate) initial_value: String,
pub id: String,
pub initial_value: String,
}
impl From<String> for Variable {