babashka

https://github.com/babashka/babashka. Also see #sci, #nbb and #babashka-circleci-builds .
2020-11-05T10:06:58.190700Z

Are arrays not fully supported in bb ?

2020-11-05T10:07:13.191100Z

I notice that the java.util.Arrays/fill method is missing

2020-11-05T10:12:15.191300Z

Seems aset-boolean is also missing

borkdude 2020-11-05T16:01:10.193Z

@didibus Can I ask about your use case for java.util.Arrays in bb?

2020-11-05T23:27:47.193500Z

Was trying to port a Sieve of Erastonthene algorithm for fun 😛

2020-11-05T23:29:12.194900Z

Without Arrays/fill, you need to manually loop and do multiple aset if you want to set a range of indexes to a value. Also, not sure is using aset over aset-boolean for a (boolean-array) is slower or anything, but it worked. Which made me wonder what's the point of aset-boolean.