2019年8月15日木曜日

開発環境

Head First Go (Jay McGavren(著)、O'Reilly Media)のChapter 13(sharing work - Goroutines and Channels)、Code Magnets(388)の解答を求めてみる。

コード

package main

import (
 "fmt"
 "time"
)

func repeat(s string) {
 for i := 0; i < 25; i++ {
  fmt.Print(s)
 }
}
func main() {
 go repeat("y")
 go repeat("x")
 time.Sleep(time.Second)
 fmt.Println()
}

入出力結果(Bash、cmd.exe(コマンドプロンプト)、Terminal)

$ go run sample1.go
yyyyyyyyyyyyyyyyyyyyyyyyxxxxyxxxxxxxxxxxxxxxxxxxxx
$ 

0 コメント:

コメントを投稿