Descripción
Swap two variables using temp
File Template: ❌
Prefix
var:swap
Scopes
java
Snippet de código
$1 temp = ${2:a};
${2:a} = ${3:b};
${3:b} = temp;
Swap two variables using temp
var:swap
java
$1 temp = ${2:a};
${2:a} = ${3:b};
${3:b} = temp;