例で用いるプログラム
ソースプログラム
バイトコード
void daily() {
gotoLab();
while (!hungry())
{
if(emergency())
break;
if (!tired())
study();
else
play();
}
}