Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Dart Flight School

Dart Flight School

Sheharyar Naseer

February 20, 2014
Tweet

More Decks by Sheharyar Naseer

Other Decks in Programming

Transcript

  1. - EE Student (Not even CS) - Experienced in RoR

    & NodeJs - Made my first app 3 weeks ago
  2. require.js Backbone Backbone Marionette jQuery Modernizr moment.js dest templates PhantomJS

    Jasmine Docs Docs Docs Docs Docs Docs Docs Docs Docs "I just want to write web apps!" "Hi, I want to build a web app"
  3. main() { print(display(‘Dart Flight School’)); var name = 'Robert Nelson';

    print(name); List names = [’Alice’, ’Bob’, ’Eve’]; print(names.length); } String display(message) { return ‘Message: $message’; }
  4. class Developer { num reputation; List languages; Developer(this.reputation, this.languages); betterThan(Developer

    other) => reputation > other.reputation; isNoob() => reputation < 10; num get count => languages.length; }