summaryrefslogtreecommitdiff
path: root/exercises/00_intro/intro2.rs
blob: 03e376ed357cc528bb7ac7d701d6f72f60908892 (plain)
1
2
3
4
fn main() {
    // TODO: Fix the code to print "Hello world!".
    println!("Hello world!");
}