summaryrefslogtreecommitdiff
path: root/exercises/00_intro/intro2.rs
blob: a28ad3dc4582b8ca1f97f82cc87b27c70e67ec2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// intro2.rs
//
// Make the code print a greeting to the world.
//
// Execute `rustlings hint intro2` or use the `hint` watch subcommand for a
// hint.

// I AM NOT DONE

fn main() {
    printline!("Hello there!")
}