Fix bit flag options and docs.

This commit is contained in:
Stephen Chung
2021-09-12 13:21:53 +08:00
parent 6510b617fe
commit 6e25354076
2 changed files with 65 additions and 16 deletions

View File

@@ -163,9 +163,9 @@ fn main() {
// REPL loop
let mut input = String::new();
let mut main_ast = AST::new_empty();
let mut ast_u = AST::new_empty();
let mut ast = AST::new_empty();
let mut main_ast: AST = Default::default();
let mut ast_u: AST = Default::default();
let mut ast: AST = Default::default();
'main_loop: loop {
print!("rhai-repl> ");