Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
Set up license.
Set up initial read me.
  • Loading branch information
dodyg committed Jun 7, 2012
0 parents commit baf0681
Show file tree
Hide file tree
Showing 7 changed files with 76 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .idea/ant.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/dictionaries/Adam.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions .idea/libraries/KotlinRuntime.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions LICENSE.TXT
@@ -0,0 +1,29 @@
Distributed under the BSD License
=================================

Copyright (c) 2012, Dody Gunawinata and Contributors
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Dody Gunawinata nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=============================================================

1 change: 1 addition & 0 deletions README.md
@@ -0,0 +1 @@
This is a collection of runnable console applications that highlights the features of Kotlin programming language.
7 changes: 7 additions & 0 deletions src/HelloWorld.kt
@@ -0,0 +1,7 @@

package Kotlin101

fun main(args : Array<String>) {
var text = "Hello World"
println(text)
}
18 changes: 18 additions & 0 deletions src/Strings.kt
@@ -0,0 +1,18 @@
package Kotlin101.Strings

fun main(args : Array<String>) {
var plato1 = "Wise men speak because they have something to say; Fools because they have to say something."

//This is a single line string
println("I love ancient philosophy.")

//Use triple quote """ to go multi line. This also means that you can use double quote " freely in the string.
//This demonstrate template expression. Pretty neat huh. You can use ${ } to show any arbitrary expression
println("""My favorite quote is by '$plato1' although at ${plato1.length} characters long, it is not compact.
He is also a skeptic on love "${platoOnLove()}"
""")
}

fun platoOnLove(): String{
return "Love is a serious mental disease."
}

0 comments on commit baf0681

Please sign in to comment.