fun String.foo(n: Int): Int { return length() - n } fun test() { "1".foo(2) }