<@U5FHN1J7L> an `object` is initialized when you f...
# announcements
a
@Kulwinder Singh an
object
is initialized when you first access it and is available until the process is terminated. subsequent accesses just reuse the only instance of the
object
. Using an
object
to share data feels like mutable shared state (
songs
and
songsMap
is mutable) which can lead to strange errors/race conditions