test.html deleted

This commit is contained in:
kloimhardt 2021-06-06 21:55:25 +02:00
parent 3264068c73
commit 32a29f0aa1

View file

@ -1,21 +0,0 @@
<html>
<head>
<script src="./resources/public/js/scittle.js"></script>
<script src="./resources/public/js/scittle.makro-plugin.js"></script>
<script type="application/x-scittle">
(require '[scittle.makros :as m])
(defn my-alert []
(.log js/console (m/add-low-fn 1 2 5 6))
(.log js/console (m/add-low-sci-makro 7 8))
(.log js/console (m/add-slash-sci-makro 1 2))
(.log js/console (m/add-c-sci-makro 3 (ns-name *ns*)))
)
(set! (.-my_alert js/window) my-alert)
</script>
</head>
<body>
<button onclick="my_alert()">
Click me!
</button>
</body>
</html>