Added snippet “main”.

This commit is contained in:
tastytea 2019-10-01 10:14:42 +02:00
parent 25cac89930
commit ef373e9ed3
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: main
# key: main
# --
int main(${1:int argc, char *argv[]})
{
$0
return 0;
}