Browse Source

Remove comments

gingerBill 3 years ago
parent
commit
ffe6d81ecd
1 changed files with 0 additions and 4 deletions
  1. 0 4
      examples/demo/demo.odin

+ 0 - 4
examples/demo/demo.odin

@@ -1715,7 +1715,6 @@ deprecated_attribute :: proc() {
 }
 }
 
 
 range_statements_with_multiple_return_values :: 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")
 	fmt.println("\n#range statements with multiple return values")
 	My_Iterator :: struct {
 	My_Iterator :: struct {
 		index: int,
 		index: int,
@@ -2005,7 +2004,6 @@ relative_data_types :: proc() {
 
 
 or_else_operator :: proc() {
 or_else_operator :: proc() {
 	fmt.println("\n#'or_else'")
 	fmt.println("\n#'or_else'")
-	// IMPORTANT NOTE: 'or_else' is an experimental feature and subject to change/removal
 	{
 	{
 		m: map[string]int
 		m: map[string]int
 		i: int
 		i: int
@@ -2036,8 +2034,6 @@ or_else_operator :: proc() {
 
 
 or_return_operator :: proc() {
 or_return_operator :: proc() {
 	fmt.println("\n#'or_return'")
 	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
 	// 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,
 	// 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
 	// set the end return value to value if possible. If the procedure only has one