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>
} = {
type t = array<float>
let make = (a: array<float>) =>{
Js.log2("makingFromArray", a);
let make = (a: array<float>) =>
if E.A.length(a) > 5 {
Ok(a)
} else {
Error("too small")
}
}
let get = (a: t) => a
}