「Swift」funcキーワードで関数を使うサンプル
書式
func 関数名(変数名:型)->戻り型
使用例
func testFunc(msg: String) -> String { return ("結果: "+msg) } print(testFunc(msg: "study skill in ")) print(testFunc(msg: "www.arkgame.com"))
実行結果
$ swift test04.swift
結果: study skill in
結果: www.arkgame.com