diff options
author | mattn <mattn.jp@gmail.com> | 2012-05-17 17:44:49 +0900 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2012-05-17 17:44:49 +0900 |
commit | 374c6d3e80d9f1f6f695af271c45380d9bb4c293 (patch) | |
tree | 17e89e168bc3152ec2999a9514b3f00aa20e0c9e /template | |
parent | 8e48c6e3c75b4aa580aa971be9c4c2357c1e99c3 (diff) | |
download | vim-sonictemplate-374c6d3e80d9f1f6f695af271c45380d9bb4c293.tar.gz vim-sonictemplate-374c6d3e80d9f1f6f695af271c45380d9bb4c293.tar.bz2 vim-sonictemplate-374c6d3e80d9f1f6f695af271c45380d9bb4c293.zip |
main for stl
Diffstat (limited to 'template')
-rw-r--r-- | template/cpp/base-main-std.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/template/cpp/base-main-std.cpp b/template/cpp/base-main-std.cpp new file mode 100644 index 0000000..5df4134 --- /dev/null +++ b/template/cpp/base-main-std.cpp @@ -0,0 +1,9 @@ +#include <iostream> +#include <string> +#include <algorithm> + +int +main(int argc, char* argv[]) { + {{_cursor_}} + return 0; +} |