12 lines
215 B
Plaintext
12 lines
215 B
Plaintext
|
package xx
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"github.com/shopspring/decimal"
|
||
|
)
|
||
|
|
||
|
func Xo() {
|
||
|
fmt.Println("xxoo")
|
||
|
fmt.Println(decimal.Max(decimal.NewFromFloat(32.3333333333333), decimal.NewFromFloat(32.33333333333331)).String())
|
||
|
}
|