Created
October 18, 2011 15:39
-
-
Save odyssomay/1295749 to your computer and use it in GitHub Desktop.
Clojurescript symbol to string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns test) | |
(console/log (str 'a)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript" src="out/goog/base.js"></script> | |
<script type="text/javascript" src="test.js"></script> | |
<script> | |
goog.require('test'); | |
</script> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment