forked from solfen/CodShaFu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (26 loc) · 670 Bytes
/
index.html
File metadata and controls
31 lines (26 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!-- *** CodShaFu ! :p *** -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>game</title>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<script src="js/ace-builds/src-noconflict/ace.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
<script src="js/runLoop.js" type="text/javascript"></script>
</head>
<body>
<canvas id="canvas">
This browser is not supported
</canvas>
<button>RUN</button>
<pre id="editor">
function foo(items) {s
var i;
for (i = 0; i < items.length; i++) {
alert("Ace Rocks " + items[i]);
}
}
</pre>
</body>
</html>