diff options
author | Karl Berry <karl@freefriends.org> | 2022-01-24 21:41:19 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-01-24 21:41:19 +0000 |
commit | a326d24711b773fa338b162fd1e98bbc8f8ce993 (patch) | |
tree | e219fe73a8cca4af8f612a4befd9e9493e2fe07c /Master/texmf-dist/source/latex | |
parent | 6f9dbf5a40fb4ec3ae9fe99d140a5bdcd004a504 (diff) |
bmstu (24jan22)
git-svn-id: svn://tug.org/texlive/trunk@61731 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex')
-rw-r--r-- | Master/texmf-dist/source/latex/bmstu/main.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/bmstu/main.c b/Master/texmf-dist/source/latex/bmstu/main.c new file mode 100644 index 00000000000..42dcc471bd5 --- /dev/null +++ b/Master/texmf-dist/source/latex/bmstu/main.c @@ -0,0 +1,9 @@ +#include <stdio.h> + +// Hello World Program in C + +int main() +{ + printf("Hello World\n"); + return 0; +} |