Minor cleanup

This commit is contained in:
2023-09-20 11:06:37 -07:00
parent 682205f5e1
commit 8497c125ef
3 changed files with 5 additions and 5 deletions

View File

@ -61,7 +61,7 @@ impl Config {
#[derive(Debug)]
#[derive(Clone)]
//#[derive(Clone)]
pub struct Context {
pub config: Config,
@ -76,12 +76,12 @@ pub struct Context {
// General functions
impl Context {
pub fn new() -> Context {
Context{
Context {
config: Config::new(),
history: Vec::new(),
variables: HashMap::new(),
functions: HashMap::new(),
shadow: HashMap::new(),
shadow: HashMap::new()
}
}