package sample

func Spin(ch <-chan struct{}) {
	for {
		select {
		case <-ch:
			return
		default:
		}
	}
}