Skip to content

Programming-M30299/week-17-dart-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Code from Week 17

A repository containing the examples from the worksheet and lecture.

Contents

  • lect17.dart - Code from the lecture.
  • pract17.dart - Code from the worksheet.
  • README.md - This file.
  • .gitignore - A file telling git to ignore certain files. You do not need to worry about this file for now.

Running the code

Navigate to the directory containing the code with the cd command, for example:

cd ~/Documents/programming/week-17-dart-code

Then, run the code with the dart command, for example:

dart pract17.dart

Auto-format your code (e.g., fix indentation and spacing) using the dart format command, for example:

dart format pract17.dart

Analyze to find issues with the code using the dart analyze command, for example:

dart analyze pract17.dart

And finally, fix the automatically detected issues with the dart fix command, for example:

dart fix pract17.dart

About

A repository containing the examples from week 17.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages