function isPrime(n) for x in [2:n] if(n%x==0): return false end return true end printl(isPrime(5))