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

math.v: remove ;

This commit is contained in:
Alexander Medvednikov 2019-06-24 13:08:38 +02:00
parent bde6e6c5b9
commit e604d5e2c8

View File

@ -36,7 +36,7 @@ fn floor(a f64) f64 {
}
fn fmod(a, b f64) f64 {
return C.fmod(a, b);
return C.fmod(a, b)
}
fn log(a f64) f64 {