So, has there been any discussion around Kotlin Qu...
# announcements
r
So, has there been any discussion around Kotlin Quines yet? Here's a one-liner I built, but there might be shorter solutions:
Copy code
fun main(){val f="""fun main(){val f="%s"%s"%s";System.out.printf(f,'"',f,'"')}""";System.out.printf(f,'"',f,'"')}
👍 1