Programming language DART by Google
Google has developed an open source web programming language called Dart. Looking at some of the code snippet, it seems that it'll be very easy for those who already have some knowledge of programming labguages like java, etc. but if you are not an experienced programmer, do not worry, Dart can be one of the best language to get into the programming realm. It is easy to learn.
The code is more or less like java and javascript and I believe it can replace javascripts from the web apps in the near future.
Here's a Seth Ladd, developer advocate of Dart project explaining more about the language.
More videos can be found on youtube explaining this object oriented programming language in more depth. You can download dart from the website dartlang.org and explore it. It was unveiled at the GOTO conference in Aarhus, 2011 October 10–12.The goal of Dart is "ultimately to replace JavaScript as the lingua franca of web development on the open web platform".
Dart is class based, single inheritance, object oriented language having syntax like C.
'Hello world' example :
main() { print('Hello World!'); }
A function to calculate the nth Fibonacci number:
int fib(int n) => (n > 1) ? (fib(n - 1) + fib(n - 2)) : n; main() { print('fib(20) = ${fib(20)}'); }
So, will it be your next programming language for your killer apps?
Download Dart now.
ABOUT THE AUTHOR
Hello, I am Piyush Ranjan, a computer engineering student from India. I love coding and talking on technology. Most of the time I am glued to my laptop watching movies, listening songs, blogging or coding.
0 comments:
Post a Comment
Thanks for your feedback !