Support Java snippet for main function

Should output: `public static void main(String[] args)`. More of these Java
snippets to come.
This commit is contained in:
William Carroll 2019-04-09 18:37:37 +01:00
parent 5144384bec
commit d26abe7edb

View file

@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: public static void main
# key: psvm
# --
public static void main(String[] args) {
$1
}