1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-14 17:13:50 +01:00
RIOT/doc/guides/test/hello_world/hello_world.md
AnnsAnn e82ada6358 doc/guide: Introduce a Guide Site
doc/guides: How to Doc

fix: add starlight to base makefile
2025-04-24 12:35:53 +02:00

556 B

title, description, code_folder
title description code_folder
Test Code Block CI Test Code Block CI examples/basic/hello-world/

Test Code Block CI

int main(void)
{
    puts("Hello World!");

Skip CI

int not_main(void)
{
    puts("Goodbye World!");

Non C Code

cowsay "Hello World!"

Non C Code with Skip CI

cowsay "Goodbye World!"

Second C Code Block

    printf("You are running RIOT on a(n) %s board.\n", RIOT_BOARD);
    printf("This board features a(n) %s CPU.\n", RIOT_CPU);