Guest User

Untitled

a guest
Jan 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. SuperAbbrevs snippet to make class for java 112
  2.  
  3. package java112.$1;
  4.  
  5. /**
  6. * @author <#=AUTHOR#>
  7. * class $2
  8. *
  9. */
  10. public class ${2:name} {
  11.  
  12. public void run() {
  13. $end
  14. }
  15.  
  16. public static void main(String[] args) {
  17. $2 lab = new $2();
  18. lab.run();
  19. }
  20.  
  21. }
Add Comment
Please, Sign In to add comment