math.v: remove ;

pull/502/head^2
Alexander Medvednikov 2019-06-24 13:08:38 +02:00
parent bde6e6c5b9
commit e604d5e2c8
1 changed files with 1 additions and 1 deletions

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 {