Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for lettura (0.21 sec)

  1. doc/go1.17_spec.html

    </p>
    
    <h3 id="Letters_and_digits">Letters and digits</h3>
    
    <p>
    The underscore character <code>_</code> (U+005F) is considered a letter.
    </p>
    <pre class="ebnf">
    letter        = unicode_letter | "_" .
    decimal_digit = "0" … "9" .
    binary_digit  = "0" | "1" .
    octal_digit   = "0" … "7" .
    hex_digit     = "0" … "9" | "A" … "F" | "a" … "f" .
    </pre>
    
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </p>
    
    <h3 id="Letters_and_digits">Letters and digits</h3>
    
    <p>
    The underscore character <code>_</code> (U+005F) is considered a lowercase letter.
    </p>
    <pre class="ebnf">
    letter        = unicode_letter | "_" .
    decimal_digit = "0" … "9" .
    binary_digit  = "0" | "1" .
    octal_digit   = "0" … "7" .
    hex_digit     = "0" … "9" | "A" … "F" | "a" … "f" .
    </pre>
    
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  3. doc/asm.html

    <p>
    The name <code>SP</code> always refers to the virtual stack pointer described earlier.
    For the hardware register, use <code>R13</code>.
    </p>
    
    <p>
    Condition code syntax is to append a period and the one- or two-letter code to the instruction,
    as in <code>MOVW.EQ</code>.
    Multiple codes may be appended: <code>MOVM.IA.W</code>.
    The order of the code modifiers is irrelevant.
    </p>
    
    <p>
    Addressing modes:
    </p>
    
    <ul>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
Back to top