Codebase list ohcount / 81a9b407-9b9f-4b49-8972-ed3f6d30059f/main test / expected_dir / kotlin.kt
81a9b407-9b9f-4b49-8972-ed3f6d30059f/main

Tree @81a9b407-9b9f-4b49-8972-ed3f6d30059f/main (Download .tar.gz)

kotlin.kt @81a9b407-9b9f-4b49-8972-ed3f6d30059f/mainraw · history · blame

kotlin	comment	// Line comment
kotlin	code	fun sum(a : Double, b : Double) : Double { 
kotlin	code	  return a + b 
kotlin	code	}
kotlin	blank	
kotlin	comment	/*
kotlin	comment	 * Block comment
kotlin	comment	 */
kotlin	blank	
kotlin	code	fun hello(place : String) : Unit {
kotlin	code	    print("Hello, \"$place\"\n")
kotlin	code	}
kotlin	blank	
kotlin	comment	/*
kotlin	comment	 * /*
kotlin	comment	 *  * Block comments nest
kotlin	comment	 *  */
kotlin	comment	 */
kotlin	blank	
kotlin	code	fun main() : Unit {
kotlin	code	    hello("""Very, very, very
kotlin	code	             // long place
kotlin	code	             somewhere""")
kotlin	code	}