0 / 60 seg.

You are creating a Kotlin unit test library. What else should you add to make the following code compile without error?

fun String.shouldEqual(value: String) = this == value
fun main(){
  val msg = "test message"
  println(msg shouldEqual "test message")
}