File tree 1 file changed +5
-6
lines changed
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 11
11
//
12
12
// p := message.NewPrinter(language.English)
13
13
//
14
- // p.Printf("%v bottles of beer on the wall.", number.Decimal(1234))
14
+ // p.Printf("%v bottles of beer on the wall.\n ", number.Decimal(1234))
15
15
// // Prints: 1,234 bottles of beer on the wall.
16
16
//
17
- // p.Printf("%v of gophers lose too much fur", number.Percent(0.12))
17
+ // p.Printf("%v of gophers lose too much fur.\n ", number.Percent(0.12))
18
18
// // Prints: 12% of gophers lose too much fur.
19
19
//
20
- // p := message.NewPrinter(language.Dutch)
21
- //
22
- // p.Printf("There are %v bikes per household.", number.Decimal(1.2))
23
- // // Prints: Er zijn 1,2 fietsen per huishouden.
20
+ // p = message.NewPrinter(language.Dutch)
21
+ // p.Printf("There are %v bikes per household.\n", number.Decimal(1.2))
22
+ // // Prints: There are 1,2 bikes per household.
24
23
//
25
24
// The width and scale specified in the formatting directives override the
26
25
// configuration of the formatter.
You can’t perform that action at this time.
0 commit comments