Got a Question:
for _, search := range Utils.Playlist {
..SomeCode
Utils.Playlist = Utils.Playlist[1:]
}
if Utils.Playlist is modified somewhere else in the Code while its Looping will it catch onto the added stuff or does it only use the Elements that are in there upon Start of the Loop. Sorry I am not a native English Speaker as you may see so if something is unclear let me know
Like does it only loop trought the elements that are in Utils.Playlist at the time the loop started or does it also loop trough elements that are getting added while it is already looping