diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-12-25 17:04:37 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-12-25 17:04:37 +0900 |
commit | 20a19f48f9db3a32c3ebc0352fe094bd9816cd38 (patch) | |
tree | 93cdadc4599ef89967041b827716b3e1b86e3255 /template | |
parent | e746cdf5c5dc8d3849b7e2517c4a24e57d931dd3 (diff) | |
download | vim-sonictemplate-20a19f48f9db3a32c3ebc0352fe094bd9816cd38.tar.gz vim-sonictemplate-20a19f48f9db3a32c3ebc0352fe094bd9816cd38.tar.bz2 vim-sonictemplate-20a19f48f9db3a32c3ebc0352fe094bd9816cd38.zip |
Add base-main.scala
Diffstat (limited to 'template')
-rw-r--r-- | template/scala/base-main.scala | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/template/scala/base-main.scala b/template/scala/base-main.scala new file mode 100644 index 0000000..f0ba3a5 --- /dev/null +++ b/template/scala/base-main.scala @@ -0,0 +1,6 @@ +object {{_name_}} { + def main(args: Array[String]): Unit = { + println("{{_cursor_}}") + } +} + |