5 lines
73 B
Text
5 lines
73 B
Text
def swap(&left, &right) {
|
|
def t := left
|
|
left := right
|
|
right := t
|
|
}
|