/****************************************************************************** * Program to print the two boolean values. * * Copyright © 2020 Richard Lesh. All rights reserved. *****************************************************************************/ #![allow(dead_code)] #![allow(non_snake_case)] #![allow(non_upper_case_globals)] fn main() { println!("True is {}", true); println!("False is {}", false); }