I know very little about the Dart programming language. I don't intend to go far with this language. This document will go over all of my knowledge of the Dart programming language.
This is how you make a Hello World program in Dart:
void main() {
  print('Hello, World!');
}Comments in Dart are the same as in PHP.
Single line comments in Dart are written like so:
// This is a single line commentMulti-line comments in Dart are written like so:
/* This is a
* multi-line
* comment */
/* This is 
also a
multi-line
comment
*/break;To this day, I am still not entirely sure what the break keyword does, but most languages support it.
/!\ This example has not been tested yet, and may not work
Dart supports classes. They can be implemented like so:
class myDartClass {
    print("Welcome to Dart class");
    break;
}/!\ This example has not been tested yet, and may not work
- 
Dart is a language by Google
 - 
Dart is a semicolon and curly bracket language
 - 
Dart uses the
*.dartfile extension by default - 
Dart is a functional programming language
 - 
Dart is heavily influenced by C in syntax
 - 
Dart transpiles to JavaScript, similarly to languages like TypeScript
 - 
Dart is one of the top 50 programming languages (as of 2022, July 31st, ranking #32)
 - 
Dart was first created in the year 2011
 - 
No other knowledge of the Dart programming language
 
- 
I have no intentions to use this language seriously
 - 
No other additional comments available
 
File type: Markdown document (*.md *.mkd *.mdown *.markdown)
File version: 1 (2022, Monday, August 1st at 4:48 pm PST)
Line count (including blank lines and compiler line): 147
Click/tap here to expand/collapse the history for this file
Version 1 (2022, Monday, August 1st at 4:48 pm PST)
Changes:
- Started the file
 
- Added the
 titlesection
- Added the
 Hello World in Dartsection
- Added the
 Comments in Dartsection
- Added the
 Single line commentssubsection
- Added the
 Multi-line commentssubsection
- Added the
 break keyword in Dartsection
- Added the
 classes in Dartsection
- Added the
 other knowledge of the Dart programming languagesection
- Added the
 Additional commentssection
- Added the
 file infosection
- Added the
 file historysection
- No other changes in version 1