Repeating constant with same value January 25, 2021 57 1 minIf multiple constants have same value.1 2 3 4 const ( min int = 1 max int = 1 ) Then the constant declaration can be simplified as below:1 2 3 4 5 6 // constants repeat the previous type and expression const ( min int = 1 max // int = 1 ) }