5 lines
91 B
Text
5 lines
91 B
Text
res = []
|
|
repeat with i = 1 to 100
|
|
if isSemiPrime(i) then res.add(i)
|
|
end repeat
|
|
put res
|