!752 p{ makeBot("bigger word bot"); } answer { if(matchStart("answer me: is * a longer word than *?",s,m)){ if(l(m.unq(0)) > l(m.unq(1))){ ret "yes"; }else{ ret "no"; } } if(matchStart("answer me: is * a shorter word than *?",s,m)){ if(l(m.unq(0)) < l(m.unq(1))){ ret "yes"; }else{ ret "no"; } } }