Skip to main content

Rust

Entry Point

For a rust code it's entry point is the main function. Main is the function which will be invoked when the program runs.

Execution of Rust Code

Rust code complies directly to machine code i.e. no need of an abstract layer (like in java) and therefore rust code has to be complied for each target platform specifically.