19 lines
307 B
Plaintext
19 lines
307 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: main template
|
|
# key: intmain
|
|
# --
|
|
|
|
/*
|
|
* `(buffer-name)`
|
|
*
|
|
* Created by Ivan I. Ovchinnikov
|
|
* `(format-time-string "at day %j of year %Y (%h %d), %H:%M")`
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, const char** argv) {
|
|
$0
|
|
return 0;
|
|
}
|