1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-13 16:43:52 +01:00
AnnsAnn 8cdb2d9411 doc/guides: Riot Tutorial
examples/guides: Introduce tutorial references

doc/guides/tutorial: Introduce code_folder for all tutorials
2025-06-26 15:53:58 +02:00

29 lines
789 B
C

/*
* SPDX-FileCopyrightText: 2025 Tom Hert <git@annsann.eu>
* SPDX-FileCopyrightText: 2025 HAW Hamburg
* SPDX-License-Identifier: LGPL-2.1-only
*/
/*
* For many printing related things, such as the puts function here
* we import stdio, depending on your board, platform or form of output
* it then includes the right definitions without the need to
* worry about the specific details.
*/
#include <stdio.h>
/*
* This is the main function of the program.
* It serves as the entry point for the program and gets called once your CPU is
* initialized.
*
* The function returns an integer value, which is the exit status
* of the program. A return value of 0 indicates that the program has finished
* successfully.
*/
int main(void) {
puts("Hello World!");
return 0;
}