package main
import "reflect"
func main() {
 f := func() {}
 s := []func(){f, f, f, f, f, f}
 x := s[1:4]
 y := s[3:6]
 z := x[2:5]
 println(
  reflect.DeepEqual(x, y),
  reflect.DeepEqual(y, z),
 )
}📌Запустить код
#junior #quiz
@Golang_google
Please open Telegram to view this post
    VIEW IN TELEGRAM
  🤯23👍7❤1🔥1
  