In recent releases, a colon can be used instead of 'then'
sys a,b
if a>b then print "yes" else print "no"
using colons:
if a>b : print "yes" else print "no"
if a>b : print "yes" : else : print "no"
using curly braces:
if a>b {print "yes"} else {print "no"}