pop! and push!
push! Continuing on previous post, let’s start with creating an Dictionary object. eng2kor=Dict( "one"=>"일", "two"=>"이", "three"=>"삼", "four"=>"사" ) Output: Dict{String, String} with 4 entries: "two" => "이" "four" => "사" "one" => "일" "three" => "삼" push! allows us to add one additional key-value pair if the added key is not present in the existing Dictionary, or if it is present, replace existing key with different value. # replace with existing key with different value push!...