1// Write this code in the cpp.json file
2{
3 "cpp snippets":
4 {
5 "prefix" : "boilerplate",
6 "body" : [
7 "#include<iostream>",
8 "using namespace std;",
9 "int main()",
10 "{",
11 " return 0;",
12 "}"
13
14 ],
15 "description" : "to produce the main snippet for cpp"
16 }
17}
18