In this tutorial you will learn about Integers via simple step by step examples.
Example 1: Int
Let us look at a simple Int example written in Kotlin Programming Language. Follow the following steps:
Step 1: Create Project
- Open your favorite Kotlin IDE.
- In the menu go to
File --> Create New Project
.
Step 2: Add Dependencies
No dependencies are needed for this project.
Step 3: Write Code
Our code will comprise the following Kotlin files:
LongLong.kt
- In your editor or IDE, create a file known as
LongLong.kt
. - Then add the following code:
(a). LongLong.kt
package LongLong
class Test {
private val total : Int
get() = 1 + 1
fun print() {
println(total)
}
}
fun main(args : Array<String>) {
val test = Test()
test.print()
}
Step 4: Run
Copy the code, build and run.
Reference
Here are the reference links:
Number | Link |
---|---|
1. | Download Example |
2. | Follow code author |
3. | Code: Apache 2.0 License |