Méthode kotlinstatique

class Foo {
  // Static method
  companion object {
     fun a() : Int = 1
  }
}
Awful Angelfish