|
|
|
|
|
by ignitionmonkey
1645 days ago
|
|
I don't see any sentence nor expressiveness in that. It's the same structure as most method calls. "Deposit 100 dollars in my account." is a sentence, and that's doable in most languages. It just depends on how high you want to go with it. Functions are ubiquitous and powerful: deposit($(100), in(my_account))
And if we remove brackets like a lot of languages (I prefer not to)... deposit $ 100, in my_account
Functions remove the need to tie actions to objects too. We can rely on types/interfaces. deposit($(100), in(the_river))
We could go further, again, depends where you want to stop. Expressiveness isn't really limited by most languages. |
|