Last active
July 6, 2018 20:35
-
-
Save aab29/b7f3e94d631f701fac2fd030ace2b2c4 to your computer and use it in GitHub Desktop.
Dart's syntax is very familiar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void main() { | |
| var familiarLanguages = ["C", "C++", "Objective-C", "C#", "Java", "JavaScript"]; | |
| print("Welcome to Dart!"); | |
| for (var language in familiarLanguages) { | |
| print("If you know $language, you already know most of Dart."); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment