September 2019
Beginner
512 pages
12h 52m
English
The following code is a basic Dart script, so let's take a look:
main() { // the entrypoint of an Dart app var a = 'world'; // declaring and initializing variable print('hello $a'); // call function to print to display output}
This code contains some basic language features that need highlighting:
Read now
Unlock full access