Remove invalid comment

This commit is contained in:
Ray 2024-06-28 15:47:37 +08:00 committed by GitHub
parent a7c241609f
commit e26876f867
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -150,7 +150,7 @@
a = a + 1; // 1 ns
a = a * 2; // 10 ns
// 循环 n 次
for _ in 0..n { // 1 ns ,每轮都要执行 i++
for _ in 0..n { // 1 ns
println!("{}", 0); // 5 ns
}
}