() {
+ window.alert("Hello, developer!");
+ })
+}
diff --git a/teavm-samples/teavm-samples-kotlin/src/main/webapp/WEB-INF/web.xml b/teavm-samples/teavm-samples-kotlin/src/main/webapp/WEB-INF/web.xml
new file mode 100644
index 000000000..bfc410b12
--- /dev/null
+++ b/teavm-samples/teavm-samples-kotlin/src/main/webapp/WEB-INF/web.xml
@@ -0,0 +1,21 @@
+
+
+
+
\ No newline at end of file
diff --git a/teavm-samples/teavm-samples-kotlin/src/main/webapp/index.html b/teavm-samples/teavm-samples-kotlin/src/main/webapp/index.html
new file mode 100644
index 000000000..988fa4e9a
--- /dev/null
+++ b/teavm-samples/teavm-samples-kotlin/src/main/webapp/index.html
@@ -0,0 +1,31 @@
+
+
+
+ Hello kotlin
+
+
+
+
+
+
+
+ This application was compiled by TeaVM from the following Kotlin source:
+
+package org.teavm.samples.kotlin
+
+import org.teavm.jso.*
+import org.teavm.dom.browser.*
+import org.teavm.dom.html.*
+import org.teavm.dom.events.*
+
+fun main(args : Array<String>) {
+ var window = JS.getGlobal() as Window;
+ var document = window.getDocument();
+
+ document.getElementById("hello-kotlin").addEventListener("click", EventListener<MouseEvent>() {
+ window.alert("Hello, developer!");
+ })
+}
+
+
+
\ No newline at end of file