zephyr/samples/cpp/hello_world
Sylvio Alves b0bb6e1e9c samples: cpp: hello_world: add cpp target tag
Add missing 'cpp' tag to ensure consistent sample tagging.

Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
2025-04-09 21:10:27 +02:00
..
src
CMakeLists.txt
prj.conf
README.rst
sample.yaml samples: cpp: hello_world: add cpp target tag 2025-04-09 21:10:27 +02:00

.. 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`