Removed Js.log

This commit is contained in:
Ozzie Gooen 2022-04-15 13:59:25 -04:00
parent 73b950078d
commit 2df6a7f537

View File

@ -12,14 +12,12 @@ module T: {
let get: t => array<float> let get: t => array<float>
} = { } = {
type t = array<float> type t = array<float>
let make = (a: array<float>) =>{ let make = (a: array<float>) =>
Js.log2("makingFromArray", a);
if E.A.length(a) > 5 { if E.A.length(a) > 5 {
Ok(a) Ok(a)
} else { } else {
Error("too small") Error("too small")
} }
}
let get = (a: t) => a let get = (a: t) => a
} }