RosettaCodeData/Task/Primality-by-Wilsons-theorem/Craft-Basic/primality-by-wilsons-theorem.basic

21 lines
141 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for i = 2 to 100
let f = 1
for j = 2 to i - 1
let f = (f * j) % i
wait
next j
if f = i - 1 then
print i
endif
next i
end