Kamuycikap - SentenceDataBase

日々の勉強の記録を気分で書き綴るブログ

2010-11-08から1日間の記事一覧

条件分岐

if文による条件分岐 if x < 5 then statement1 end unless x >= 5 then statement1 end if x < 5 then statement1 else statement2 end unless x < 5 then statement2 else statement1 end statement1 if y == 3 statement1 unless y != 3 x = if a > 0 then…