tangled
alpha
login
or
join now
besaid.zone
/
yap
learning rust do not look
0
fork
atom
overview
issues
pulls
pipelines
Compare changes
Choose any two refs to compare.
base:
main
no tags found
compare:
main
no tags found
go
options
unified
split
Changed files
+1
-1
src
main.rs
+1
-1
src/main.rs
···
42
42
43
43
44
44
fn count_bytes(contents: &String) {
45
45
-
println!("{}", contents.bytes().count())
45
45
+
println!("{}", contents.bytes().len())
46
46
}
47
47
48
48
fn count_chars(contents: &String) {