Hello World!
Part of the Fundamentals section of Coddy's Kotlin journey. Lesson 2 of 93.
The "Hello World!" is a simple program that outputs Hello World! to the screen.
In Kotlin, we use println() to show words on the screen. The words go inside double quotation marks.
Execution of this console program starts in fun main(). Kotlin also allows functions, classes and properties outside main:
fun main() {
println("Hello World!")
}Note: println() prints the text and moves to a new line. There is also print() which prints without moving to a new line.
Challenge
BeginnerWrite a program that prints Ready to explore! on the first line and My first program on the second line. Match the capitals, spaces and punctuation exactly.
Try it yourself
fun main() {
}This lesson includes a short quiz. Start the lesson to answer it and track your progress.
All lessons in Fundamentals
4Operators Part 1
Arithmetic OperatorsModulo OperatorAugmented AssignmentComparison OperatorsRecap - Simple Math7Basic IO
Println FunctionString TemplatesReadLine InputType ConversionRecap - Years Until RetirementRecap - True or False10Functions
Declare A FunctionParameters And ArgumentsReturn ValuesNamed ArgumentsDefault ValuesSingle Expression FunctionsRecap - Sigma FunctionRecap - Validation Function2Variables
Val vs VarType InferenceNumbersStringBooleanNaming ConventionsRecap - Initialize Variables5Operators Part 2
Logical Operators Part 1Logical Operators Part 2Logical Operators Part 3Ternary With If ExpressionRecap - Simple Logic8Bill Split Calculator
Welcome MessageGetting Input3Nullability
What Is Null SafetyNullable TypesSafe Call OperatorElvis OperatorFunction Challenge BasicsNot Null AssertionRecap - Safe Access6Decision Making
If StatementIf - ElseIf As An ExpressionWhen ExpressionWhen With RangesRecap - Simple Calculator9Loops
For LoopWhile LoopDo-While LoopBreakContinueRanges In LoopsNested LoopRecap - FactorialRecap - Dynamic InputPractice on your own: Kotlin playground