Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 769 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 769 Bytes

Mixing C++ and Rust - Multi-Language "Hello World" with CXX

This is the code developed during this tutorial video: https://www.youtube.com/watch?v=OrvMmnzcT70&list=PL6CJYn40gN6jOg_cPqRfXMNriHknKy4VW&index=2

Building and Running

To build this project, you will need:

  • A C++ compiler (e.g. clang/gcc/msvc)
  • An installation of Rust with Cargo

You should then be able to run it with:

$ cargo run
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.01s
     Running `target/debug/cxx-basics`
Hello, World!
Bonjour, le monde!
Hallo, Welt!
Bye!
Au revoir!
Auf Wiedersehen!

License

All the code in this repository is under the MIT license (see also: LICENSE.md).