diff --git a/ace/index.html b/ace/index.html index c6cc01d..80988a9 100644 --- a/ace/index.html +++ b/ace/index.html @@ -1,29 +1,39 @@ -ACE in Action - + -
function foo(items) { - var x = "All this is syntax highlighted"; - return x; -}
- - +
function foo(items) {
+    var i;
+    for (i = 0; i < items.length; i++) {
+        alert("Ace Rocks " + items[i]);
+    }
+}
+ + + \ No newline at end of file