2024-10-01 13:35:18 -04:00
|
|
|
local inspect = require("inspect")
|
|
|
|
local mathex = require("mathex")
|
|
|
|
|
2024-10-01 16:44:27 -04:00
|
|
|
print(mathex.mathex("A^B",1,6))
|
|
|
|
print(mathex.mathex("A^B",2,5))
|
|
|
|
print(mathex.mathex("A^B",3,4))
|
|
|
|
print(mathex.mathex("A^B",4,3))
|
|
|
|
print(mathex.mathex("A^B",5,2))
|
|
|
|
print(mathex.mathex("A^B",6,1))
|