Skip to content

Instantly share code, notes, and snippets.

@ejknapp
Created January 25, 2012 21:30
Show Gist options
  • Save ejknapp/1678855 to your computer and use it in GitHub Desktop.
Save ejknapp/1678855 to your computer and use it in GitHub Desktop.
SuperAbbrevs snippet
package java112.$1;
/**
* @author <#=AUTHOR#>
* class $2
*
*/
public class ${2:name} {
public void run() {
$end
}
public static void main(String[] args) {
$2 lab = new $2();
lab.run();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment