.. _program_listing_file_Src_GraphicsEngineVulkan_Main.cpp: Program Listing for File Main.cpp ================================= |exhale_lsh| :ref:`Return to documentation for file ` (``Src/GraphicsEngineVulkan/Main.cpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #include "app/App.hpp" #include extern "C" { int32_t rusty_extern_c_integer(); } int main() { if (USE_RUST) { std::cout << "A value given directly by extern c function " << rusty_extern_c_integer() << "\n"; } Kataglyphis::App application; return application.run(); }