diff options
author | mattn <mattn.jp@gmail.com> | 2013-05-16 08:57:33 +0900 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2013-05-16 09:01:50 +0900 |
commit | f8e989b4488b2343431cd87ae19c4f7bc0d8e958 (patch) | |
tree | a767e9ea96024a9b52ce751b4884c298601cd65f /template | |
parent | d005017de79d94b5779707c9585e94199271de01 (diff) | |
download | vim-sonictemplate-f8e989b4488b2343431cd87ae19c4f7bc0d8e958.tar.gz vim-sonictemplate-f8e989b4488b2343431cd87ae19c4f7bc0d8e958.tar.bz2 vim-sonictemplate-f8e989b4488b2343431cd87ae19c4f7bc0d8e958.zip |
Add csharp base template
Diffstat (limited to 'template')
-rw-r--r-- | template/cs/base-program.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/template/cs/base-program.cs b/template/cs/base-program.cs new file mode 100644 index 0000000..cb263b9 --- /dev/null +++ b/template/cs/base-program.cs @@ -0,0 +1,9 @@ +using System; + +class Program +{ + static void Main(string[] args) + { + Console.WriteLine("{{_cursor_}}"); + } +} |