Further simplified the comments

This commit is contained in:
Tanish-Eagle
2022-04-03 21:52:32 +05:30
parent 2416688f4f
commit 722bb85ca6

View File

@ -6,8 +6,8 @@
// Fix the error below with least amount of modification to the code
fn main() {
let x: i32; // Uninitialized but used, will result in an ERROR !
let y: i32; // Uninitialized but also unused, will only receive a warning
let x: i32; // Uninitialized but used, ERROR !
let y: i32; // Uninitialized but also unused, only a warning
assert_eq!(x, 5);
println!("Success!");