You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I added a postfix unary factorial operator, '!', requiring changes to parsePrimary in parse.go.
I'm using the gamma function to compute factorials so floats can be handled and error handling avoided, which I'm not sure is correct mathematically and could expose floating point peculiarities but seems ok for the values I've tried.