Skip to content

Instantly share code, notes, and snippets.

@v2e4lisp
Created January 9, 2013 09:32
Show Gist options
  • Save v2e4lisp/4491867 to your computer and use it in GitHub Desktop.
Save v2e4lisp/4491867 to your computer and use it in GitHub Desktop.
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="GREE">
<meta name="keywords" content="GREE, openfeint, free games">
<!-- iphone -->
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0,
user-scalable=0">
<meta name="apple-mobile-web-app-capable" content="no">
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="address=no">
</head>
<body>
<div id="bigbang">
<img src="main.jpg">
</div>
<div id="message">
<p> I have nothing to say! </p>
</div>
<div id="pushme">
<p><button type="button" style="height: 25px; width: 400px">GO </button></p>
<p><button type="button" style="height: 25px; width: 400px">SEE</button></p>
</div>
</body>
</html>
(defun ya-elt (the-list index)
(if (> index 0)
(ya-elt (cdr the-list) (- index 1))
(car the-list)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment