separate numerical operations into int and float folders, changing names of exposed functions from stdlib
This commit is contained in:
6
lib/float.ml
Normal file
6
lib/float.ml
Normal file
@@ -0,0 +1,6 @@
|
||||
open FromStdlib
|
||||
|
||||
let ( + ) a b = stdlib_plus_float a b
|
||||
let ( - ) a b = stdlib_minus_float a b
|
||||
let ( * ) a b = stdlib_multiply_float a b
|
||||
let ( / ) a b = stdlib_divide_float a b
|
||||
Reference in New Issue
Block a user