diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2019-11-21 14:41:33 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-21 14:41:33 +0000 |
| commit | 88c90cf99a1d134bc7026fdc3b16181ebe7c76ba (patch) | |
| tree | 6b3759f3b972d593cb31d5c263515fc1adf707ca /examples | |
| parent | 321dcc60e3e0916a8b458f5b39479add1290ca22 (diff) | |
Update demo.odin
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/demo/demo.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index c7a24fd7a..2b71f7b9a 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -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; } |