This is a quick guide to Kotlin programming language. The previous part of this guide is here
#Object Oriented
fun main(args : Array<String>) {
class local (val x : Int)
val y = local(10)
println("${y.x}")
This is a quick guide to Kotlin programming language. The previous part of this guide is here
#Object Oriented
fun main(args : Array<String>) {
class local (val x : Int)
val y = local(10)
println("${y.x}")
$ redis-cli | |
> config set stop-writes-on-bgsave-error no |
<NotepadPlus> | |
<UserLang name="LogFile" ext="log"> | |
<Settings> | |
<Global caseIgnored="yes" /> | |
<TreatAsSymbol comment="no" commentLine="no" /> | |
<Prefix words1="no" words2="no" words3="no" words4="no" /> | |
</Settings> | |
<KeywordLists> | |
<Keywords name="Delimiters">[(0])0</Keywords> | |
<Keywords name="Folder+"></Keywords> |
// Licensed under the "Apache License, Version 2.0" (c) 2010 | |
/** | |
* Returns filenames found by expanding the passed pattern which is String or | |
* a List of patterns. | |
* NOTE: that this pattern is not a regexp (it’s closer to a shell glob). | |
* NOTE: that case sensitivity depends on your system. | |
* | |
* <code>*</code> Matches any file. Can be restricted by other values in | |
* the glob pattern (same as <code>.*</code> in regexp). | |
* <code>*</code> will match all files, |