「Swift5」関数で戻り値無しのサンプル
書式
func 関数名(変数名:型)
使用例
func testFunc(person: String) { print("1234, \(person)!") } print("戻り値なしのサンプル") testFunc(person: "testuser002")
実行結果
$ swift tt03.swift
戻り値なし
1234, testuser002!
Coding Changes the World
書式
func 関数名(変数名:型)
使用例
func testFunc(person: String) { print("1234, \(person)!") } print("戻り値なしのサンプル") testFunc(person: "testuser002")
実行結果
$ swift tt03.swift
戻り値なし
1234, testuser002!