33
loading...
This website collects cookies to deliver better user experience
// 1
void main() {
// 2
print('Hello, World!');
}
// some examples of expressions
1 + 1
// some examples of statements
var a = 1;
print('Hello, World!');
String firstVar = 'first variable';
print(firstVar);
// this is a single line-comment
/*
* this is a multi-line comment
*/