Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR RUST

rust variables in println

use std::collections::HashMap;

fn main() {
    let mut hash = HashMap::new();
    hash.insert("Daniel", "798-1364");
    println!("{:?}", hash);
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #rust #variables #println
ADD COMMENT
Topic
Name
7+9 =