There are boolean constants, rune constants, integer constants, floating-point constants, complex constants, and string constants. Rune, integer, floating-point, and complex constants are collectively called numeric constants.
ブール定数、ルーン定数、整数定数、浮動小数点定数、複素定数、および文字列定数があります。ルーン、整数、浮動小数点、および複素定数は、まとめて数値定数と呼ばれます。(by Google Translated.)
A constant declaration binds a list of identifiers (the names of the constants) to the values of a list of constant expressions. The number of identifiers must be equal to the number of expressions, and the nth identifier on the left is bound to the value of the nth expression on the right.
定数宣言は、識別子のリスト(定数の名前)を定数式のリストの値にバインドします。識別子の数は式の数と同じである必要があり、左側のn番目の識別子は右側のn番目の式の値にバインドされます。(by Google Translated.)
コメント