RosettaCodeData/Task/Even-or-odd/AppleScript/even-or-odd-1.applescript

15 lines
263 B
AppleScript
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
set L to {3, 2, 1, 0, -1, -2, -3}
set evens to {}
set odds to {}
repeat with x in L
if (x mod 2 = 0) then
set the end of evens to x's contents
else
set the end of odds to x's contents
end if
end repeat
return {even:evens, odd:odds}