📜 ⬆️ ⬇️

Official Dart Manual and Updated Dart Editor

A team of Google engineers responsible for developing the “JavaScript replacement” Dart programming language recently presented its first official review , having published its full specification about it a month ago. The review is intended primarily for quick acquaintance with the language or getting quick help on it. We consider such basic themes for any manual as “Hello, world”, variables, data types, functions, execution control, exceptions, OOP, libraries and namespaces.

So, for example, an iteration through the list looks like:
var gifts = { "first" : "partridge", "second": "turtledoves", "fifth" : "golden rings"}; gifts.forEach((k,v) => print('$k : $v')); 


Also, the Dart team has updated the Dart Editor, based on Eclipse. The list of improvements can hardly be called principled - they relate mainly to reliability and stability of work. Rather, the presence of the editor eliminates one significant problem for the transition to a new language of developers - the presence of the IDE. Now Dart Editor and Dart SDK can be downloaded for Windows, Linux and MacOS; also for a quick start there is a tutorial on the rapid creation of the application.

[ Dart Review , Specification , Download Dart Editor ]

')

Source: https://habr.com/ru/post/142751/


All Articles