md2teach/md2teach/main.c

19 lines
230 B
C
Raw Normal View History

2021-04-13 19:10:02 +00:00
/*
* main.c
* md2teach
*
* Created by Jeremy Rand on 2021-04-13.
* Copyright (c) 2021 ___ORGANIZATIONNAME___. All rights reserved.
*
*/
#include <stdio.h>
int main(void)
{
printf("Hello, world!\n");
return 0;
}