Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 528 Bytes

input.md

File metadata and controls

31 lines (22 loc) · 528 Bytes

This is the source code of the traditional Hello World program.

{hello.play}

println! is a macro that prints text to the console.

A binary can be generated using the Rust compiler: rustc.

$ rustc hello.rs

rustc will produce a hello binary that can be executed.

$ ./hello
Hello World!

Activity

Click 'Run' above to see the expected output. Next, add a new line with a second println! macro so that the output shows:

Hello World!
I'm a Rustacean!