mw-scittle/test.html
kloimhardt 8d35ea95f2 stable
2021-06-01 15:08:29 +02:00

21 lines
641 B
HTML

<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 4))
)
(set! (.-my_alert js/window) my-alert)
</script>
</head>
<body>
<button onclick="my_alert()">
Click me!
</button>
</body>
</html>