| Index: pkg/intl/example/basic/basic_example.dart
|
| ===================================================================
|
| --- pkg/intl/example/basic/basic_example.dart (revision 13446)
|
| +++ pkg/intl/example/basic/basic_example.dart (working copy)
|
| @@ -56,6 +56,9 @@
|
| printForLocale(aDate, new Intl(), runAt);
|
| printForLocale(aDate, de, runAt);
|
| printForLocale(aDate, th, runAt);
|
| + // Example making use of the return value from withLocale;
|
| + var useReturnValue = Intl.withLocale(th.locale, () => runAt('now', 'today'));
|
| + doThisWithTheOutput(useReturnValue);
|
| }
|
|
|
| printForLocale(aDate, intl, operation) {
|
|
|