c-course/c-basic/helloworld.c

16 lines
309 B
C
Raw Normal View History

2024-01-24 10:45:36 +03:00
/**
* @file helloworld.c
* @author Mert GÖr (mertgor@masscollabs.xyz)
* @brief Hello World Example
* @version 0.1
* @date 2024-01-24
*
* @copyright Copyright (c) 2024 Mert GÖr and contributors - GPLv3 or any later
*
*/
2024-01-24 08:28:48 +03:00
#include <stdio.h>
int main(){
printf("Hello World\n");
return 0;
}