Removed Js.log
This commit is contained in:
parent
73b950078d
commit
2df6a7f537
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user