public static void main(String[] args) {
window.onload = new Callback1<DOMEvent>() {
public void $invoke(DOMEvent ev) {
Form form = window.document.forms.$get(0);
Element button = form.elements.$get("say");
final Input text = form.elements.$get("to");
button.onclick = new Function1<DOMEvent, Boolean>() {
public Boolean $invoke(DOMEvent ev) {
alert("Hello me to " + text.value);
return true;
}