Vitaly Lavrov
Vitaly Lavrov
Reproduction script (scala-cli): ```scala //> using lib "org.typelevel::cats-effect:3.3.13" import cats.effect.* object Main extends IOApp.Simple: def run = Resource .eval(IO.raiseError(new Exception("Boom"))) .race(Resource.never) .attempt .use(_ => IO.println("Done") ) ``` Running `scala-cli run...
I tried to generate typing for my project where I use material-ui components. I found out that the converter only supports version 3.9.3 and not 4 series. If I try...
I believe [bootstrapping native binary](https://get-coursier.io/docs/cli-native-bootstrap) is a very cool feature of coursier. The example from the documentation worked well. ``` coursier bootstrap --scala 2.11 --native io.get-coursier::echo_native0.3:1.0.2 -o echo ``` However...