objeck / objeck-lang

Objeck is a modern object-oriented programming language with functional features tailored for machine learning. It emphasizes expression, simplicity, portability, and scalability. The programming environment consists of a compiler, virtual machine, REPL shell, and command line debugger with IDE plugins.
https://objeck.org
Other
154 stars 11 forks source link

Add Exp to Float #180

Closed ghost closed 1 year ago

ghost commented 1 year ago

I don't understand why such a commonly used function like Exp is not included. Objeck doesn't have exponential function but has useless stuffs like Factorial and DoubleFactorial as part of the standard math library! https://github.com/objeck/objeck-lang/issues/171

objeck commented 1 year ago

What is the need for all of the math functions? Not "hard" to add; just time required.

ghost commented 1 year ago

What is the need for all of the math functions? Not "hard" to add; just time required.

C/C++/Java have these functions. Almost all of the programming languages out there have these functions. Any scientific calculators like CASIO have these functions.

objeck commented 1 year ago

In b182421