diff options
| author | gingerBill <bill@gingerbill.org> | 2019-01-06 14:41:42 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-01-06 14:41:42 +0000 |
| commit | 594238a86cf785dda79461968e51d191ed9a1af4 (patch) | |
| tree | 09cb8811ab47d728b40060c43b5c0915f1389aec /examples | |
| parent | 5acea1bceb3af71e8014115fd73530cb3ec9d46a (diff) | |
Reorganize fmt and strings; Replace fmt.String_Buffer with strings.Builder
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 ba6e71f44..21b6904c4 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -841,7 +841,7 @@ bit_set_type :: proc() { incl(&x, 'F'); assert('F' in x); excl(&x, 'F'); - assert(!('F' in x)); + assert('F' notin x); y |= {1, 4, 2}; assert(2 in y); |