DekGenius.com
SWIFT
swift print
print("Hello World")
//printing a value
let num = 5
print(num)
print("a num: " + num) //concatenation
print("a num: (num)") //interpolation
print things in swift
print("Hello World")
print("Hello Again")
//prints Hello World, and then Hello Again on a new line
//Hello World
//Hello Again
print("Hello World", terminator="")
print("Hello Again")
//prints Hello World and then Hello Again on the same line
//Hello WorldHello Again
print(123.45)
//prints 123.45
var message: String = "Hello"
print(message)
//prints Hello
swift complete print function syntax
print("New Year", 2022, "See you soon!", separator: ". ")
swift complete print function syntax
print("New Year", 2022, "See you soon!", separator: ". ")
swift complete print function syntax
print(items: separator: terminator:)
swift complete print function syntax
print(items: separator: terminator:)
swift complete print function syntax
print("New Year", 2022, "See you soon!", separator: ". ")
swift complete print function syntax
print(items: separator: terminator:)
swift complete print function syntax
print(items: separator: terminator:)
swift complete print function syntax
print(items: separator: terminator:)
swift complete print function syntax
print("New Year", 2022, "See you soon!", separator: ". ")
swift complete print function syntax
print(items: separator: terminator:)
swift complete print function syntax
print(items: separator: terminator:)
swift complete print function syntax
print(items: separator: terminator:)
swift complete print function syntax
print(items: separator: terminator:)
swift complete print function syntax
print("New Year", 2022, "See you soon!", separator: ". ")
swift complete print function syntax
print("New Year", 2022, "See you soon!", separator: ". ")
swift complete print function syntax
print("New Year", 2022, "See you soon!", separator: ". ")
swift complete print function syntax
print(items: separator: terminator:)
swift complete print function syntax
print(items: separator: terminator:)
swift complete print function syntax
print(items: separator: terminator:)
swift complete print function syntax
print(items: separator: terminator:)
swift complete print function syntax
print("New Year", 2022, "See you soon!", separator: ". ")
swift complete print function syntax
print("New Year", 2022, "See you soon!", separator: ". ")
swift complete print function syntax
print(items: separator: terminator:)
printf in swift
let x = 3.1415926
print(String(format: "%.2f", x)) //3.14
print(String(format: "%2.2f", x)) // 3.14 (two blank spaces in front of 3.
Swift Print Statement
print("Good Morning!")
print("It's rainy today")
© 2022 Copyright:
DekGenius.com