Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 15 (0.23 sec)

  1. doc/go_spec.html

    untyped complex constant yields an untyped complex constant.
    </p>
    
    <pre>
    const a = 2 + 3.0          // a == 5.0   (untyped floating-point constant)
    const b = 15 / 4           // b == 3     (untyped integer constant)
    const c = 15 / 4.0         // c == 3.75  (untyped floating-point constant)
    const Θ float64 = 3/2      // Θ == 1.0   (type float64, 3/2 is integer division)
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top