-
syntaxhighlighter Kotlin 브러쉬(brush)컴퓨터/HTML & JS & TS 2016. 11. 13. 14:26728x90반응형
스킨 편집 - 파일 업로드에 위 파일을 업로드하고, <head>와 </head> 사이에 아래 코드를 추가한다.
<script type="text/javascript" src="./images/shBrushKotlin.js"></script>
글을 쓸 때 HTML 버튼을 눌러 아래와 같이 사용한다. ( brush:kt 가능)
<pre class="brush:kotlin">Kotlin 소스</pre><pre class="brush:kt">Kotlin 소스</pre>예제button.setOnClickListener { view -> println("clicked") } var hope val name: String? = if (user != null) { user.name } else { null } val length: Int? = if (name != null) { name.length } else { null } internal fun loadMainActivity() { val intent = Intent(this, MainActivity::class.java) startActivity(intent) } when (x) { 1 -> print("x == 1") 2 -> print("x == 2") else -> { // Note the block print("x is neither 1 nor 2") } } for ((index, value) in array.withIndex()) { println("the element at $index is $value") } loop@ for (i in 1..100) { for (j in 1..100) { if (...) break@loop } }
728x90'컴퓨터 > HTML & JS & TS' 카테고리의 다른 글
웹(Web) 제작 시 유용한 사이트 (0) 2016.11.13 티스토리 블로그 생성일, 지난날 사이드바 (0) 2016.11.13 티스토리 KaTeX 사용하기 (HTML 수학 기호) (0) 2016.11.13