 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Hello World program in Kotlin
In this article, we will understand how to print hello world in Kotlin. Hello world is stored as a string format and is printed using ?print()' function.
Input
Suppose our input is
Hello World
Output
The expected out should be
Hello World
Algorithm
- Step 1 ? START 
- Step 2 ? Define a string variable 
- Step 3 ? Display the string on the console 
- Step 4 ? STOP 
Example 1
In this example, we will simply display a string "Hello World" using the print() method in Kotlin ?
fun main() { val inputStr = "Hello World!" print(inputStr) }
Output
Hello World!
Example 2
Here, we have created a custom function and printed Hello World
fun printStr(inputStr : String){ print(inputStr) } fun main() { val inputStr = "Hello World!" printStr(inputStr) }
Output
Hello World!
Advertisements
 