Skip to content

Commit 9cf5d65

Browse files
committed
Make sure repl is grabbing namespace from actual current namespace
1 parent 5572ade commit 9cf5d65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/repl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ impl Repl {
3535
let mut stdin_reader = stdin.lock();
3636

3737
loop {
38-
print!("user=> ");
38+
print!("{}=> ",self.environment.get_current_namespace_name());
3939
let _ = io::stdout().flush();
4040

4141
// Read

0 commit comments

Comments
 (0)