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