Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for constNil (0.08 sec)

  1. src/cmd/doc/testdata/pkg.go

    	ConstOne   = 1
    	ConstTwo   = 2 // Comment on line with ConstTwo.
    	constThree = 3 // Comment on line with constThree.
    )
    
    // Const block where first entry is unexported.
    const (
    	constFour = iota
    	ConstFive
    	ConstSix
    )
    
    // Variables
    
    // Comment about exported variable.
    var ExportedVariable = 1
    
    var ExportedVarOfUnExported unexportedType
    
    // Comment about internal variable.
    var internalVariable = 2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top