Skip to content

Commit

Permalink
+ welcome words (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
meloalright authored Nov 18, 2023
1 parent e2b1dc1 commit 1c2eb6c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "three_body_lang"
description = "Three Body Language written in Rust"
edition = "2021"
version = "0.4.3"
version = "0.4.5"
authors = ["meloalright", "rustq"]
license = "MIT"

Expand All @@ -12,7 +12,7 @@ members = ["interpreter"]
[dependencies]
rustyline = { version = "12.0.0", optional = true }
rustyline-derive = { version = "0.4.0", optional = true }
three_body_interpreter = { version = "0.4.3", path = "./interpreter" }
three_body_interpreter = { version = "0.4.5", path = "./interpreter" }

[[bin]]
name = "3body"
Expand Down
2 changes: 1 addition & 1 deletion interpreter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "three_body_interpreter"
description = "Three Body interpreter"
version = "0.4.3"
version = "0.4.5"
edition = "2021"
authors = ["meloalright", "rustq"]
license = "MIT"
Expand Down
2 changes: 2 additions & 0 deletions src/bin/repl/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ Options and arguments:
return;
}

println!("欢迎来到三体世界!");

loop {
match rl.readline(">> ") {
Ok(line) => {
Expand Down

0 comments on commit 1c2eb6c

Please sign in to comment.