Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: src/tests/site/code/webui/web/webui.dart

Issue 22528003: update examples on homepage (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: Gentler highlighting colors Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 import 'package:web_ui/web_ui.dart';
2
3 @observable String myString = '';
sethladd 2013/08/08 05:09:12 lets put this in a class, to get closer to polymer
Kathy Walrath 2013/08/08 17:09:39 Done.
4
5 String get shouted => myString.toUpperCase();
6
7 String get palindrome =>
8 myString + myString.split('').reversed.join();
9
10 main() {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698