mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-03 22:28:46 +00:00
Remove comments
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user