Y
Hacker News
new
|
ask
|
show
|
jobs
by
skocznymroczny
3263 days ago
It gets better with chained function calls, e.g. (D-like pseudocode):
writeln(mul(add(x, 5), 30))
vs.
x.add(5).mul(30).writeln()