Skip to content

Commit a967f07

Browse files
authored
Update print.md
There was an extra, i have removed it `println!("Base 16 (hexadecimal): {:x}", 694240);`
1 parent c0be629 commit a967f07

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/hello/print.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ fn main() {
3737
println!("Base 2 (binary): {:b}", 69420); // 10000111100101100
3838
println!("Base 8 (octal): {:o}", 69420); // 207454
3939
println!("Base 16 (hexadecimal): {:x}", 69420); // 10f2c
40-
println!("Base 16 (hexadecimal): {:X}", 69420); // 10F2C
4140
4241
// You can right-justify text with a specified width. This will
4342
// output " 1". (Four white spaces and a "1", for a total width of 5.)

0 commit comments

Comments
 (0)