Programming in Dart: Fundamentals

Apr 26 2022 · Dart 2.15, DartPad, DartPad

Part 1: Fundamentals

02. Meet Dartpad & Write Comments

Episode complete

Play next episode

Next
About this episode
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 01. Introduction Next episode: 03. Understand Booleans & Comparison Operators

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

The Dart programming language was written 2011 by Google as alternative way to write Javascript.

void main() {

}
void main() {
    String welcomeMessage = 'hello world';
}
void main() {
    String welcomeMessage = 'hello world';
    print(welcomeMessage);
}
void main() {
    var welcomeMessage = 'hello world';
    print(welcomeMessage);
}
welcomeMessage += ', it is good to see you';
const welcomeMessage = 'hello world';
var welcomeMessage = 'hello world';
const boilingPoint = 100;
double gradePointAverage = 3.5;
var gradePointAverage = 3.5;
// This space is for rent
  // This space is
  for rent
/*
/*
 * This space is 
 * for rent
 */
// print(welcomeMessage);