Closed sternj closed 1 year ago
Defining a single function in .insectrc as:
.insectrc
logb(n,b) = log(n) / log(b)
and attempting to run
insect "logb(4,2)"
what I get is Parse error at position 7: Expected ")". When I do so inside the interactive shell, I get
Parse error at position 7: Expected ")"
$ insect >>> logb(4,2) logb(4, 2) = 2
Thank you for reporting this.
Defining a single function in
.insectrc
as:and attempting to run
what I get is
Parse error at position 7: Expected ")"
. When I do so inside the interactive shell, I get