Last active
January 20, 2016 20:05
-
-
Save NickRSearcy/a7ad5de1701a91511be3 to your computer and use it in GitHub Desktop.
Bare Bones Coffeescript page
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://coffeescript.org/extras/coffee-script.js"></script> | |
</head> | |
<body> | |
<div id="demo"> | |
</div> | |
<script type="text/coffeescript"> | |
document.getElementById("demo").innerHTML = "Coffeescript works #{ 'Yay!'}" | |
</script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment