10 lines
92 B
Text
10 lines
92 B
Text
MUL
|
|
=LAMBDA(a, LAMBDA(b, a * b))
|
|
|
|
|
|
POW
|
|
=LAMBDA(n,
|
|
LAMBDA(e,
|
|
POWER(n, e)
|
|
)
|
|
)
|