Skip to content

Instantly share code, notes, and snippets.

@stravid
Created January 24, 2012 11:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stravid/1669626 to your computer and use it in GitHub Desktop.
Save stravid/1669626 to your computer and use it in GitHub Desktop.
Starterkit for CoffeeScript
<html>
<head>
<title>CoffeeScript</title>
<script type="text/javascript" src="http://coffeescript.org/extras/coffee-script.js"></script>
</head>
<body>
<h1>Hello CoffeeScript!</h1>
<script type="text/coffeescript">
console.log 'Hello console!'
console.log "Number #{i}" for i in [1..10]
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment