c-course/c-basic/helloworld.c
2024-01-24 10:47:36 +03:00

16 lines
309 B
C

/**
* @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
*
*/
#include <stdio.h>
int main(){
printf("Hello World\n");
return 0;
}