bhai-lang icon indicating copy to clipboard operation
bhai-lang copied to clipboard

Feature Request: exponentiation operator or text

Open PositiveUser opened this issue 2 years ago • 0 comments

Is your feature request related to a problem? Please describe.

I have not found a way to do exponentiation in your language

Describe the solution you'd like.

Exponentiation is a mathematical operation.


In Mathematics

ab

Examples

35 = 3 × 3 × 3 × 3 × 3 53 = 5 × 5 × 5


My solutions for Bhailang ↓


As an operator

a ** b

Examples

3 ** 5 = 3 * 3 * 3 * 3 * 3 5 ** 3 = 5 * 5 * 5


As text

a ka ghat b (this is in Hindi language)

Examples

3 ka ghat 5 = 3 * 3 * 3 * 3 * 3 5 ka ghat 3 = 5 * 5 * 5


Thank you very much

Describe alternatives you've considered

No response

Additional context.

No response

PositiveUser avatar Apr 24 '22 14:04 PositiveUser