diff options
Diffstat (limited to 'clojurescript/t03.html')
-rw-r--r-- | clojurescript/t03.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/clojurescript/t03.html b/clojurescript/t03.html new file mode 100644 index 00000000..6c43090a --- /dev/null +++ b/clojurescript/t03.html @@ -0,0 +1,11 @@ +<html> + <body> + <textarea rows="24" cols="80" id="ta"></textarea> + <script type="text/javascript"> + var ta = document.getElementById( 'ta' ); + function print( x ) { ta.value += x + "\n"; } + </script> + <script type="text/javascript" src="clj.js"></script> + <script type="text/javascript" src="t03.js"></script> + </body> +</html> |