View Problem

Remove an entry from a map

Given a map pets {joe:cat,mary:turtle,bill:canary} remove the mapping for "bill" and print "canary"
ExpandDiskEdit
fsharp
let key = "bill"
match (pets |> Map.tryFind key) with
| Some(value) -> pets <- (Map.remove key pets) ; printfn "%s : %s removed" key value
| None -> printfn "Key %s not found" key
ExpandDiskEdit
fsharp
let key = "bill"
let entry = if (pets.ContainsKey(key)) then Some(pets.[key]) ; else None
pets.Remove(key)

match entry with
| Some(value) -> printfn "%s" value
| None -> printfn "key not found"
ExpandDiskEdit
fantom
pet := map.remove("bill")
echo ("pet=$pet")

Submit a new solution for fsharp or fantom
There are 21 other solutions in additional languages (clojure, cpp, erlang, go ...)