feat(file-templates): add c-mode/__main.c

Ref: #7387
This commit is contained in:
Lorenzo Ravaglia 2023-09-07 20:01:25 +02:00 committed by Henrik Lissner
parent f811e4fa49
commit 9cc9351cae
No known key found for this signature in database
GPG key ID: B60957CA074D39A3

View file

@ -0,0 +1,11 @@
# -*- mode: snippet -*-
# group: file templates
# contributor: Lorenzo Ravaglia
# --
#include <stdio.h>
int main(int argc, char *argv[]) {
$0
return 0;
}