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