Making decisions

It is interesting to have a look at how you make decisions in different programming languages. In Python, for example, the code is straightforward. >>> if 1 < 2: …     print ‘smaller’ … else: …     print ‘bigger’ …  smaller >>>  […]