In this tutorial you will learn about Enums via simple step by step examples.
Example 1: Enums
Let us look at a simple Enums 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:
Enums.kt
- In your editor or IDE, create a file known as
Enums.kt
. - Then add the following code:
(a). Enums.kt
package Objects.Enums
fun main(args : Array<String>) {
print(Days.MONDAY)
}
enum class Days {
MONDAY,
TUESDAY
}
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 |