doomemacs/modules/editor/file-templates/templates/c-mode/__main.c

11 lines
163 B
C
Raw Normal View History

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