!636
!standard functions

main {
  static Object androidContext;
  
  psvm {
    String it = "bla"; // example input
    System.out.println(it);
    if (androidContext != null) {
      call(androidContext, "updateWidgetWithText", it);
      print "Widget updated."
    }
  }
}