zephyr/samples/cpp/hello_world/README.rst
Benjamin Cabé 774fd8b328 samples: cpp: use zephyr:code-sample directive
Describe the samples using code-sample directive in preparation for
upcoming changes to the Zephyr documentation that will be leveraging
the provided description and metadata.

Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
2024-08-27 15:13:43 -04:00

34 lines
716 B
ReStructuredText

.. zephyr:code-sample:: hello_cpp_world
:name: Hello C++ world
Print "Hello World" to the console in C++.
Overview
********
A simple :ref:`C++ <language_cpp>` sample that can be used with many supported board and prints
"Hello, C++ world!" to the console.
Building and Running
********************
This configuration can be built and executed on QEMU as follows:
.. zephyr-app-commands::
:zephyr-app: samples/cpp/hello_world
:host-os: unix
:board: qemu_riscv32
:goals: run
:compact:
To build for another board, change "qemu_riscv32" above to that board's name.
Sample Output
=============
.. code-block:: console
Hello C++, world! qemu_riscv32
Exit QEMU by pressing :kbd:`CTRL+C`