Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for design (0.24 sec)

  1. doc/go1.17_spec.html

    x++                 x += 1
    x--                 x -= 1
    </pre>
    
    
    <h3 id="Assignments">Assignments</h3>
    
    <pre class="ebnf">
    Assignment = ExpressionList assign_op ExpressionList .
    
    assign_op = [ add_op | mul_op ] "=" .
    </pre>
    
    <p>
    Each left-hand side operand must be <a href="#Address_operators">addressable</a>,
    a map index expression, or (for <code>=</code> assignments only) the
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    with a new value specified by an <a href="#Expressions">expression</a>.
    An assignment statement may assign a single value to a single variable, or multiple values to a
    matching number of variables.
    </p>
    
    <pre class="ebnf">
    Assignment = ExpressionList assign_op ExpressionList .
    
    assign_op = [ add_op | mul_op ] "=" .
    </pre>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top