En applecript tengo 4 variables, cada una con su número. Me gustaría tener una función que me diga qué variable está configurada en el número más bajo.
EG.
set one to 12
set two to 55
set three to 2
set four to 1244
function(which one is the lower) - returns three.
Soy nuevo en Applecript, en PHP lo haría gracias a matrices asociativas, pero en Applecript tenemos listas simples.
Sería increíble si pudiera devolver el primer nombre de variable si dos o más variables se configuran en el mismo número. Por ejemplo, si 'uno' y 'cuatro' se establecen en 0, debería devolver 'uno'.