EcutDavid / newcpp

A simple tool to create C++ program with boilerplate code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Goal

A simple tool to create C++ program with boilerplate code.

Will improve the boilerplate from time to time for sure.

DEMO

$ go get github.com/EcutDavid/newcpp
$ newcpp a/1.cpp
a/1.cpp created
$ cat a/1.cpp
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
/*
  And more stuff....
*/
#define REP(i, a, b) for (int i = a; i < b; i++)

int main() {
}

About

A simple tool to create C++ program with boilerplate code.

License:MIT License


Languages

Language:Go 100.0%