/dart_by_example

Learn Dart language by example

Primary LanguageDartMIT LicenseMIT

Dart by example

Instructor: Tuan Nguyen (anhtuank7c@hotmail.com)

Project structure

  • bin/: command-line application entrypoint
  • lib/: library code
  • test/: unit test

Basic usage

  • To run project: dart run
  • To run test: dart test
  • To compile project: dart compile kernel bin/dart_by_example.dart
  • To run compiled file: dart run bin/dart_by_example.dill
  • To generate api docs: dart doc