Created
September 24, 2022 09:55
-
-
Save amani27/c147c2b3fe055a6e9c057741d7d73001 to your computer and use it in GitHub Desktop.
Demonstrating types of comments in Dart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void main() { | |
| // Single line comments | |
| /* | |
| Blocks of comments. | |
| */ | |
| /// Documentation | |
| /// | |
| /// This is what you should use to document your classes. | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment