You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"code": "// Kotlin supports scripting with .kts files",
70
+
"comment": "Kotlin scripts (.kts files) execute from top to bottom"
71
+
},
72
+
"single_line": {
73
+
"code": "// This is a single line comment"
74
+
},
75
+
"multi_line": {
76
+
"code": "/* This is a\n multi-line comment */"
77
+
},
78
+
"documentation": {
79
+
"code": "/**\n * This is a KDoc documentation comment\n * @param name the person's name\n * @return a greeting message\n */\nfun greet(name: String): String {\n return \"Hello, $name!\"\n}"
80
+
},
81
+
"special": {
82
+
"code": "//TODO: Implement this feature\n//FIXME: Bug in this code",
83
+
"comment": "Kotlin recognizes TODO, FIXME and other special comment markers"
0 commit comments