to be, that is the question; Whether ’tis nobler in the mind to suffer The slings and arrows of outrageous fortune, Or to take arms against a sea of troubles And, by opposing, end them. • response: 「生きるか死ぬか、その答えは何か?」「苦難の矢や、不条理の波 に耐え忍ぶほうが賢明か、あるいは、敵対して困難を打ち破り、その苦しみを終 わらせるほうが賢明か。」 • response time: 6.06 秒
not to be, that is the question; Whether ’tis nobler in the mind to suffer The slings and arrows of outrageous fortune, Or to take arms against a sea of troubles And, by opposing, end them. • response: 「生きるか死ぬか、それは質問です。」「もっとも、苦しみを偲ぶほう が懸命なのか、あるいは、暴力的で不受理な運命の矢や医師を打ち破り、その 苦しみを終わらせるべきなのか。」 • response time: 57.08 秒
ch := make(chan string) // Start a goroutine to send strings to the channel go func() { ch <- "Hello, world!" ch <- "This is a string from a goroutine." close(ch) }() // Use a range over function to receive strings from the channel for s := range ch { fmt.Println(s) } } 2024/10/19 19