summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index d58e9e0..db5e22d 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -45,7 +45,7 @@ fn repl(
// Get the prompt
let prompt = match env::var("PS1") {
Ok(val) => val,
- Err(_) => String::from("|> "),
+ Err(_) => String::from(" ¥ "),
};
// Update shell title
@@ -217,7 +217,7 @@ fn main() {
} else {
let prompt = match env::var("PS1") {
Ok(val) => val,
- Err(_) => String::from("|> "),
+ Err(_) => String::from(" ¥ "),
};
print!("\n{}", prompt);
io::stdout().flush().unwrap();