7 lines
81 B
Text
7 lines
81 B
Text
class Number {
|
|
method ⊕(arg) {
|
|
self + arg
|
|
}
|
|
}
|
|
|
|
say (21 ⊕ 42)
|