예제 #1
0
파일: sorter.go 프로젝트: ahh/remedial
func MSort(v *vec.Vector) {
	c := make(chan int)
	go mhelp(v, 0, v.Size()-1, c)
	<-c
}