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