5 lines
72 B
Python
5 lines
72 B
Python
|
|
f = { |x| x + 1 };
|
|||
|
|
g = { |x| x * 2 };
|
|||
|
|
h = g <> f;
|
|||
|
|
h.(8); // returns 18
|