Update demo.odin

This commit is contained in:
gingerBill
2019-11-21 14:41:33 +00:00
committed by GitHub
parent 321dcc60e3
commit 88c90cf99a

View File

@@ -1148,7 +1148,7 @@ map_type :: proc() {
// can be done in two ways:
elem, ok := m["Bob"];
exists := "Bob" in m;
_ = elem;
_, _ = elem, ok;
_ = exists;
}