Open jmcwilliams403 opened 1 month ago
The source code of Iosevka uses Math.pow in a lot of places. This could potentially clean up this expression wherever it shows up. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation
Math.pow
You can always use define-operator, like
define-operator
define-operator "**" 150 "right" : syntax-rules `(@l ** @r) `[Math.pow @l @r]
The source code of Iosevka uses
Math.pow
in a lot of places. This could potentially clean up this expression wherever it shows up. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation