thecoderworld
  • About Us
  • Contact Us
  • Privacy Policy
  • Disclaimer
No Result
View All Result
  • Programming
  • Web Development
  • Best Of
    • Alternative
    • How To
    • Tech
    • AI
    • IDE
  • PC
    • Windows
    • Mac
    • Linux
  • Reviews
  • Open Source
  • Lists
  • Security
No Result
View All Result
thecoderworld
  • Programming
  • Web Development
  • Best Of
    • Alternative
    • How To
    • Tech
    • AI
    • IDE
  • PC
    • Windows
    • Mac
    • Linux
  • Reviews
  • Open Source
  • Lists
  • Security
No Result
View All Result
thecoderworld
No Result
View All Result
Home Tutorials Source Code Kotlin

Kotlin for Beginners – Break and Continue

Ajoy Kumar by Ajoy Kumar
July 1, 2019
in Kotlin
1 min read
0
Share on FacebookShare on Twitter

This is the source code from the Kotlin Tutorial For Beginners. In this source code, you are going to learn about Break and Continue in Kotlin.

//break Statement

fun main (args : Array<String>) {
 
for (i in 1..10){
 
if (i == 5){
break
     }
println(i)
  }
}
 
//Continue Statement
fun main (args : Array<String>) {
 
for (i in 1..10){
 
if (i == 5){
continue
    }
println(i)
  }
} 

Tags: Kotlin
Previous Post

Kotlin for Beginners - For Loop

Next Post

Kotlin for Beginners - Arrays

Ajoy Kumar

Ajoy Kumar

I am an entrepreneur by heart and founder of thecoderworld. Who always follows his passion. I love writing about software, coding, open-source, technology, smartphones, tips and tricks

Related Posts

Convert Java File to Kotlin
Kotlin

Kotlin for Beginners – Convert Java file to Kotlin

July 1, 2019
Kotlin and Java Together
Kotlin

Kotlin for Beginners – Kotlin and Java Together

July 1, 2019
Companion Object
Kotlin

Kotlin for Beginners – Companion Object

July 1, 2019

Stay Connected

  • 177 Fans
  • 41 Followers
  • 32 Followers
  • 8k Subscribers

Latest Posts

How to Install GIMP on Windows 10
Alternative

How to Install GIMP on Windows 10

December 10, 2019
Adobe Creative Cloud Alternatives
Alternative

Top 10 Adobe Creative Cloud Alternatives for Free

December 10, 2019
Top 5 Search Engines that Do Not Track You
Top Lists

Top 5 Search Engines that Do Not Track You

December 9, 2019
thecoderworld

© 2016 - 2019 thecoderworld.com

Navigate Site

  • About Us
  • Contact Us
  • Privacy Policy
  • Disclaimer

Follow Us

No Result
View All Result
  • Programming
  • Web Development
  • Best Of
    • Alternative
    • How To
    • Tech
    • AI
    • IDE
  • PC
    • Windows
    • Mac
    • Linux
  • Reviews
  • Open Source
  • Lists
  • Security

© 2016 - 2019 thecoderworld.com