, 29 2021 . 12:31
+
applegame:
D_KEY @ . , ( , .. ).
. , .
D_KEY @ . , .
, . . . ()
, . Haskell:
x = 3
y = x + 1
z = y + 2
, , , D:
const x = 3;
const y = x + 1;
const z = y + 2;
, - . , , :
z = y + 2
y = x + 1
x = 3
.
D - :
alias z = () => y() + 2;
alias y = () => x() + 1;
alias x = () => 3;
, C/C++ , . ( , -

):
#define z (y + 2)
#define y (x + 1)
#define x 3
C++ - -.
D_KEY @ ( ), .
, " ". ? , , . , . :)
korvin @ ?
: , , .
Erlang/Elixir . - . do- Haskell.
https://forum.sources.ru/index.php?showtopic=421266&view=findpost&p=3846952
:
Holy Wars