行与缩进
python使用缩进代替{},确定语法中的代码块
CoffeeScript
if(True):
print('AnswerTrue')
print('true')
else:
print('AnswerFalse')
print('false')
运行结果
AnswerTrue
true
false