Clean up
This commit is contained in:
parent
50b7b4bfc6
commit
e858e7e20f
@ -1,5 +1,6 @@
|
||||
[workspace]
|
||||
members = ["dust-lang", "dust-shell"]
|
||||
default-members = ["dust-lang"]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
|
@ -5,8 +5,8 @@ secret_number = int.random_range(0..100)
|
||||
loop {
|
||||
io.write_line("Input your guess.")
|
||||
|
||||
input = io.read_line() ? "Failed to read input."
|
||||
guess = int.parse(input) ? "Failed to parse input."
|
||||
input = io.read_line() ? io.write_line("Failed to read input.")
|
||||
guess = int.parse(input) ? io.write_line("Failed to parse input.")
|
||||
|
||||
if guess < secret_number {
|
||||
io.write_line("Too low!")
|
||||
|
Loading…
Reference in New Issue
Block a user