class SandboxView extends Ui.WatchFace {
var myTimer;
function onLayout(dc) {
myTimer = new Timer.Timer();
myTimer.start(method(:myUpdate), 500, true);
}
function onUpdate() {
}
function myUpdate() {
Sys.println("Hello");
}
}