#################### # 遅くなるサンプル例 example:bad #################### sMsg = "" if uFmod == 2 sMsg ="Good" end if uFmod == 3 sMsg ="Better" end if uFmod == 4 sMsg ="Best" end #################### # 速いサンプル例 example:short and speedy #################### sMsg = "Good" #一番使用されるデフォルト Default item if uFmod == 3 sMsg ="Better" end if uFmod == 4 sMsg ="Best" end # ----------------------------------------------- # uFmod == 2 の場合結果として sMsg = "Good"を出力