```rescript let myDict = dict{ "key1": "k1" } switch myDict { | dict{"key1": k} => Console.log(`key1 value: ${k}`) | _ => Console.log("Miss") } ```