Cyclic equal (alpha)

This commit is contained in:
Dmitry Boulytchev 2020-08-02 23:56:21 +03:00
parent c73f43e817
commit c29ab4901f
13 changed files with 402 additions and 18 deletions

View file

@ -18,7 +18,7 @@ public fun initArray (n, f) {
}
public fun mapArray (f, a) {
initArray (a.length, fun (i) {a[i]})
initArray (a.length, fun (i) {f (a[i])})
}
public fun arrayList (a) {