MOCKSTACKS
EN
Questions And Answers

More Tutorials








Kotlin Output Functions

In Kotlin, there are two types to print to console:

  • println()
  • print()

Difference Between println() and print()

  • print() - prints string inside the quotes.
  • println() - prints string inside the quotes similar like print() function. Then the cursor moves to the beginning of the next line.

Example 1: print() and println()

fun main(args : Array<String>) {
    println("1. println ");
    println("2. println ");

    print("1. print ");
    print("2. print");
}

Output

1. println
2. println
1. print 2. print


Example 2: Print Variables and Literals

fun main(args : Array<String>) {
    val ammount = 22.5

    println("ammount")
    println("$ammount")
    println("ammount = $ammount")
    println("${ammount + ammount}")
    println(22.5)
}

Output

ammount
22.5
ammount = 22.5
25
22.5

Conclusion

In this page (written and validated by ) you learned about Kotlin Output Functions . What's Next? If you are interested in completing Kotlin tutorial, your next topic will be learning about: Kotlin Take user input.



Incorrect info or code snippet? We take very seriously the accuracy of the information provided on our website. We also make sure to test all snippets and examples provided for each section. If you find any incorrect information, please send us an email about the issue: mockstacks@gmail.com.


Share On:


Mockstacks was launched to help beginners learn programming languages; the site is optimized with no Ads as, Ads might slow down the performance. We also don't track any personal information; we also don't collect any kind of data unless the user provided us a corrected information. Almost all examples have been tested. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. By using Mockstacks.com, you agree to have read and accepted our terms of use, cookies and privacy policy.