Как Smalltalk или Lisp?
EDIT
Где структуры управления похожи:
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