喜欢 Smalltalk 或 Lisp?
编辑
控制结构如下:
Java Python
if( condition ) { if cond:
doSomething doSomething
}
或者
Java Python
while( true ) { while True:
print("Hello"); print "Hello"
}
和运营商
Java, Python
1 + 2 // + operator
2 * 5 // * op
在 Smalltalk 中(如果我是正确的)那将是:
condition ifTrue:[
doSomething
]
True whileTrue:[
"Hello" print
]
1 + 2 // + is a method of 1 and the parameter is 2 like 1.add(2)
2 * 5 // same thing