Skip to content

Instantly share code, notes, and snippets.

@emilepetrone
Created January 3, 2011 23:16
Show Gist options
  • Save emilepetrone/764159 to your computer and use it in GitHub Desktop.
Save emilepetrone/764159 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<script type = "text/javascript">
if (window.addEventListener) {
window.addEventListener("load",emile, false);
} else if (window.attachEvent) {
window.attachEvent("onload", emile);
} else {
window.onload=emile;
}
function emile(){ for(i=0;++i<201;)console.log((i%7?'':'Rick')+(i%4?'':'Roll')||i) };
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment