The Google’s Ivy interpreter is a APL-like math language. This is an example of first N primes numbers algorithm in Ivy/APL
op primes N = (not T in T o.* T) sel T = 1 drop iota N
Could someone describe the notation for the primes algorithm here?
Ivy/APL doc is here.