Hello, World! in Rust

Example for versions Rust 0.1
use std;
import std::io;

fn main() {
    io::println("Hello, World!");
}