
set stringValue to "A"
set intvalue to 10
set boolValue to false
set array to {"Apple", "Orange", "Banana"}
set fruits to { "Apple", "Orange", "Banana"}
repeat with fruit in fruits
log fruit
end repeat
set x to 10
if x > 10 then
log "x > 10"
else if x is equal to 10 then
log "x == 10"
else
log "x < 10"
end if