QuackatronHQ / Gigarepo

Empty interpolated string SC-W1011
Bug risk
Critical
1 occurrence in this check
Missing arguments to the interpolation - s"Found elements satisfying our criteria"
37object Main extends App {
38  var filtered = Utils.filterBy(Range.inclusive(1, 100).toArray, criteria = x => x % 2 == 0)
39  if (!filtered.isEmpty) {
40    println(s"Found elements satisfying our criteria")41  }
42
43  var lang1 = "Scala"