9 lines
103 B
Text
9 lines
103 B
Text
|
|
class Number {
|
||
|
|
method ⊙(exp) {
|
||
|
|
expon(self, exp)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
say (3 ⊙ 10)
|
||
|
|
say (5.5 ⊙ -3)
|