terminal and fatal modules, cleaner hiding of FromStdlib functions and renamed exposed module to general

This commit is contained in:
2022-01-30 11:55:42 +11:00
committed by aaron-jack-manning
parent a8cdd2411f
commit e9368e17c1
36 changed files with 306 additions and 165 deletions

View File

@@ -1,11 +1,11 @@
open FromStdlib open Exposed
open General
let ( + ) a b = stdlib_plus_float a b
let ( + ) a b = FromStdlib.plus_float a b
let ( - ) a b = stdlib_minus_float a b
let ( - ) a b = FromStdlib.minus_float a b
let ( * ) a b = stdlib_multiply_float a b
let ( * ) a b = FromStdlib.multiply_float a b
let ( / ) a b = stdlib_divide_float a b
let ( / ) a b = FromStdlib.divide_float a b
let of_string = stdlib_float_of_string_opt
let of_string = FromStdlib.float_of_string_opt