// 型の汎用化 func getTwo<T>(x: T){ print(x) print(x) } getTwo(x: 3) //---- 3が2回表示される getTwo(x: "Hello World") //---- Hello Worldが2回表示される