Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Zwarts (0.29 sec)

  1. doc/go_mem.html

    the start of the function <code>main.main</code>.
    </p>
    
    <h3 id="go">Goroutine creation</h3>
    
    <p class="rule">
    The <code>go</code> statement that starts a new goroutine
    is synchronized before the start of the goroutine's execution.
    </p>
    
    <p>
    For example, in this program:
    </p>
    
    <pre>
    var a string
    
    func f() {
    	print(a)
    }
    
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    that can be converted to type <code>T</code>.
    </p>
    
    <pre class="ebnf">
    Conversion = Type "(" Expression [ "," ] ")" .
    </pre>
    
    <p>
    If the type starts with the operator <code>*</code> or <code>&lt;-</code>,
    or if the type starts with the keyword <code>func</code>
    and has no result list, it must be parenthesized when
    necessary to avoid ambiguity:
    </p>
    
    <pre>
    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)
  3. doc/go_spec.html

    that can be converted to type <code>T</code>.
    </p>
    
    <pre class="ebnf">
    Conversion = Type "(" Expression [ "," ] ")" .
    </pre>
    
    <p>
    If the type starts with the operator <code>*</code> or <code>&lt;-</code>,
    or if the type starts with the keyword <code>func</code>
    and has no result list, it must be parenthesized when
    necessary to avoid ambiguity:
    </p>
    
    <pre>
    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