| Index: sky/examples/raw/hello_world.dart | 
| diff --git a/sky/examples/raw/hello_world.dart b/sky/examples/raw/hello_world.dart | 
| index cbf03f07841d22f07a6e6b99d25f11bd85e5de7c..52cfc50c4f3d719f980a037dc1f12ab03c2e53f4 100644 | 
| --- a/sky/examples/raw/hello_world.dart | 
| +++ b/sky/examples/raw/hello_world.dart | 
| @@ -2,6 +2,25 @@ | 
| // Use of this source code is governed by a BSD-style license that can be | 
| // found in the LICENSE file. | 
|  | 
| +import "dart:math"; | 
| +import 'dart:sky'; | 
| + | 
| void main() { | 
| -    print("Hello, world"); | 
| +  print("Hello, world"); | 
| + | 
| +  double width = 500.0; | 
| +  double height = 500.0; | 
| + | 
| +  PictureRecorder recorder = new PictureRecorder(width, height); | 
| +  double radius = min(width, height) * 0.45; | 
| + | 
| +  Paint paint = new Paint()..setARGB(255, 0, 255, 0); | 
| + | 
| +  recorder.drawCircle(width / 2, height / 2, radius, paint); | 
| + | 
| +  print("Storing picture"); | 
| +  view.picture = recorder.endRecording(); | 
| + | 
| +  print("Scheduling paint"); | 
| +  view.schedulePaint(); | 
| } | 
|  |