From 004bc5ccdf1a8499e2c937dcc687843cea89160d Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 28 Mar 2025 05:03:12 +0100 Subject: examples: move example files from tests/ to examples/example_01/ Relocate the generic C++ example and its build configs into a dedicated examples/example_01/ directory to better separate tests from usage samples. No content changes were made; files were renamed only. Signed-off-by: Amlal El Mahrouss --- examples/example_01/example.cc | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 examples/example_01/example.cc (limited to 'examples/example_01/example.cc') diff --git a/examples/example_01/example.cc b/examples/example_01/example.cc new file mode 100644 index 0000000..dfef2e4 --- /dev/null +++ b/examples/example_01/example.cc @@ -0,0 +1,8 @@ +#include +#include + +int main(int argc, char** argv) +{ + std::cout << "hello, world!\n"; + return 0; +} -- cgit v1.2.3