Print(Swift4.2)
#Swift4.2
print文を使うことでコンソールに配列の中身や文字列などの情報を出力することができます。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
let hello = "Hello" | |
let world = "World" | |
// HelloWorld | |
print(hello + world) | |
// 引数は1つ以上、好きな個数指定でき、異なる型が混在していてもOK | |
// String 3.14156 42 2018-10-24 14:16:33 +0000 | |
print("String", 3.14156, 42, Date()) | |
// separatorを指定することで、好きな区切り文字を指定できる | |
// Hello-World-3.1415 | |
print("Hello", "World", separator: "-") | |
// terminatorを指定することで、好きな区切り文字を指定できる | |
// Hello World (続けて出力される) | |
print("Hello", terminator: " ") | |
print("World") |