python
Conditionals
if (foo > 5):
print "foo more than 5!"
else:
print "foo less than 5!"
Slide 43
Slide 43 text
python
hylang
Conditionals
if (foo > 5):
print "foo more than 5!"
else:
print "foo less than 5!"
(if (> foo 5)
(print "foo more than 5!")
(print "foo less than 5!"))