diff options
| author | gingerBill <bill@gingerbill.org> | 2022-03-14 12:24:10 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-03-14 12:24:10 +0000 |
| commit | ffe6d81ecd3169d2cadd112fa878872ed5acd8bf (patch) | |
| tree | 03d999b886b0163a5cd9ea554bf951f239afbc32 | |
| parent | 4474144c24d30cce896f4a8a562ad14cf5be96b6 (diff) | |
Remove comments
| -rw-r--r-- | examples/demo/demo.odin | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index 4d4490446..8c2321dae 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -1715,7 +1715,6 @@ deprecated_attribute :: proc() { } range_statements_with_multiple_return_values :: proc() { - // IMPORTANT NOTE(bill, 2019-11-02): This feature is subject to be changed/removed fmt.println("\n#range statements with multiple return values") My_Iterator :: struct { index: int, @@ -2005,7 +2004,6 @@ relative_data_types :: proc() { or_else_operator :: proc() { fmt.println("\n#'or_else'") - // IMPORTANT NOTE: 'or_else' is an experimental feature and subject to change/removal { m: map[string]int i: int @@ -2036,8 +2034,6 @@ or_else_operator :: proc() { or_return_operator :: proc() { fmt.println("\n#'or_return'") - // IMPORTANT NOTE: 'or_return' is an experimental feature and subject to change/removal - // // The concept of 'or_return' will work by popping off the end value in a multiple // valued expression and checking whether it was not 'nil' or 'false', and if so, // set the end return value to value if possible. If the procedure only has one |