What are the backticks used for in the snippet below?
Why add them around the fun is(amount:Int ):Boolean { ... }?
fun is(amount:Int ):Boolean { ... }
verifier.`is`(amount
It allows you to call a Java method whose name is a Kotlin keyword. It won't work if you leave out the backticks.