/****************************************************************************** * This program prints "Hello, yourname!" * * Copyright © 2016 Richard Lesh. All rights reserved. *****************************************************************************/ #![allow(dead_code)] #![allow(non_snake_case)] #![allow(non_upper_case_globals)] fn main() { println!("Hello, Rich!"); }