summaryrefslogtreecommitdiff
path: root/exercises/00_intro/intro2.rs
blob: c7a3ab2a5731b2cb146dfa3bca717d4f7d8784a5 (plain)
1
2
3
4
5
// Make the code print a greeting to the world.

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