9 lines
147 B
Plaintext
9 lines
147 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: public void Method { ... }
|
|
# key: method
|
|
# --
|
|
${1:public} ${2:void} ${3:Method}(${4:int x})
|
|
{
|
|
${0:return x;}
|
|
}
|