値の型 ラベルの使用例 set person to {name:"foo", birth:"1973.10.22", sex:"M"} set n to number of person if sex of person = "M" then set str to "男性" else if sex of person = "F" then set str to "女性" else set str to "不明" end if end if display dialog ("氏名:" & name of person & return & "生年月日:" & birth of person & return & "性別:" & str) リストの使用例 set animal to {"cat", "dog", "tiger"} set n to number of animal repeat