3. Install Dart
Task
- Install the Dart SDK, following the instructions in the Reading.
- Install the plugin for Dart. If you are using IntelliJ, instructions are here: https://www.jetbrains.com/help/webstorm/dart.html#download_dart_tools
- Create a new public GitHub repo called “dart-helloworld” and clone it to your laptop.
- Create a new (command line) dart program called “helloworld” in that repo by running the command
dart create helloworld
in that directory.
- Open the bin/helloworld.dart file in your editor, make sure the dart SDK can be found.
- Verify that you can run
dart analyze
on your helloworld program and that no errors are found.
- Run the program both from the command line and from within IntelliJ (or whatever editor you are using).
- Review the three files: bin/helloworld.dart, lib/helloworld.dart, and test/helloworld_test.dart
- Verify that you can run
dart test
on your code and that the tests pass.
- Commit your code to GitHub.
Submission Instructions
By the date and time associated with this assignment, you will upload a link to your GitHub repo to Laulima. The assignment is called “Environment Configuration.”