<@U17GHT814>: Good article! Very nicely done! Th...
# random
v
@domfox: Good article! Very nicely done! The code style is close to what I would 've done, but I think you'll agree that some parts are hard to read. For example
tailrec fun mandelbrot(..): Int? = when {...}
. The intend of the function is very clear (thanks to FP), but all together the parameter list and the
when
being an expression creates a visual mess. I wonder what is your take on Kotlin formatting?