Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for onClosing (0.09 sec)

  1. doc/go1.17_spec.html

    <a href="#Select_statements">"select"</a> statement
    within the same function.
    </p>
    
    <pre class="ebnf">
    BreakStmt = "break" [ Label ] .
    </pre>
    
    <p>
    If there is a label, it must be that of an enclosing
    "for", "switch", or "select" statement,
    and that is the one whose execution terminates.
    </p>
    
    <pre>
    OuterLoop:
    	for i = 0; i &lt; n; i++ {
    		for j = 0; j &lt; m; j++ {
    			switch a[i][j] {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top