doomemacs/private/templates/c++-mode/__main.cpp

14 lines
185 B
C++
Raw Normal View History

2015-06-24 15:32:34 +02:00
# -*- mode: snippet -*-
# group: file templates
# contributor: Henrik Lissner
# --
#include <iostream>
using namespace std;
int main(int argc, char *argv[]) {
$0
return 0;
}