REBOL 3 Docs | Guide | Concepts | Functions | Datatypes | Errors |
TOC < Back Next > | Updated: 3-Aug-2010 Edit History |
Note that this is the infix op! (operator) form of the power function.
print power 10 2
100.0
The result is always decimal!.
print 10 ** 2
100.0
The log-10 function does the inverse:
print 10 ** 3
1000.0
print log-10 1000
3.0
TOC < Back Next > | REBOL.com - WIP Wiki | Feedback Admin |