11 lines
334 B
Markdown
11 lines
334 B
Markdown
# Hints
|
|
|
|
## 1. Prefixed library imports
|
|
|
|
- Notice that the test script (test/pig_latin_test.dart) imports the solution file using a prefix:
|
|
|
|
```dart
|
|
import 'package:pig_latin/pig_latin.dart' as pigLatin;
|
|
```
|
|
- Learn more: [Specifying a library prefix
|
|
](https://dart.dev/guides/language/language-tour#specifying-a-library-prefix) |