Fix the for loop to create vars

This commit is contained in:
JT
2021-10-10 05:10:46 +13:00
parent 9a3b0312d2
commit e4ce41ba15
6 changed files with 23 additions and 134 deletions

View File

@ -2,6 +2,7 @@ mod alias;
mod def;
mod do_;
mod export_def;
mod for_;
mod help;
mod hide;
mod if_;
@ -14,6 +15,7 @@ pub use alias::Alias;
pub use def::Def;
pub use do_::Do;
pub use export_def::ExportDef;
pub use for_::For;
pub use help::Help;
pub use hide::Hide;
pub use if_::If;