package
0.0.0-20240513190655-2e7e865f817b
Repository: https://github.com/matthiasbruns/go-school.git
Documentation: pkg.go.dev

# README

Exercise

  • Create a program that
  • Spawns 10 goroutines
  • Each goroutine should create a random amount of Recipes and send it to a channel
    • You can use rand.Intn(n) for random int generation
  • Add a loop that collects the values in the channel and prints them in the order they were received with fmt.Print

# Packages

No description provided by the author

# Structs

No description provided by the author