Spotlight archive
Guess the language.
Three lines, three guesses.
MODESpotlight0/3
Spotlight · ?.??
1var wg sync.WaitGroup
2for _, u := range urls { wg.Add(1); go func(s string) { defer wg.Done(); fetch(s) }(u) }
3wg.Wait()
$ identify language
scripting
compiled
query
Keep going