DART – Structured web programming

Dart is an object-oriented, structured programming language designed for web developers to develop Web-based applications from google.Dart is still in the early stages of development.
Current browser support:Chrome, Safari 5+, Firefox 4+.

Main features:

Classes
Optional types
libraries
tooling

Example hello world Code:

main() {
var name = 'World';
print('Hello, ${name}!');
}

Output:

Hello, World!

DART Homepage

If you liked this article, please subscribe to our YouTube Channel. You can also stay connected with us on X (Twitter) and Facebook.



Leave a Reply