1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

all: fix unused variable warnings

This commit is contained in:
yuyi
2020-05-12 19:57:23 +08:00
committed by GitHub
parent 99b31d8241
commit f33de1bc64
2 changed files with 2 additions and 2 deletions

View File

@@ -124,7 +124,7 @@ sys := &System {arr_momentum(), arr_position()}
offsetmomentum(mut sys)
println('${energy(sys):.9f}') //-0.169075164
for i in 0..50000000 {
for _ in 0..50000000 {
advance(mut sys, 0.01)
}
println('${energy(sys):.9f}') //-0.169059907