RosettaCodeData/Task/Exponentiation-operator/Sidef/exponentiation-operator-2.sidef

9 lines
103 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
class Number {
method ⊙(exp) {
expon(self, exp)
}
}
say (3 ⊙ 10)
say (5.5 ⊙ -3)