Scala 3 Using – problems when reading from file
In a Scala 3 project, I have a method which returns a Try from a given String def translate(text: String) : Try[Thing] = … and a method which is supposed to read the contents of a file and pass it on to the first method. Here, I want to use Using because as far as… Read More Scala 3 Using – problems when reading from file