/* * SPDX-FileCopyrightText: 2014 Freie Universität Berlin * SPDX-License-Identifier: LGPL-2.1-only */ /** * @ingroup examples * @{ * * @file * @brief Hello World application * * @author Kaspar Schleiser * @author Ludwig Knüpfer * * @} */ #include int main(void) { puts("Hello World!"); printf("You are running RIOT on a(n) %s board.\n", RIOT_BOARD); printf("This board features a(n) %s CPU.\n", RIOT_CPU); return 0; }