Skip to content

Instantly share code, notes, and snippets.

@NickRSearcy
Last active January 20, 2016 20:05
Show Gist options
  • Save NickRSearcy/a7ad5de1701a91511be3 to your computer and use it in GitHub Desktop.
Save NickRSearcy/a7ad5de1701a91511be3 to your computer and use it in GitHub Desktop.
Bare Bones Coffeescript page
<!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