r2693: *** empty log message ***
[lml.git] / doc / readme.lml
index f43c809de00b3f00b52c08b7dd076a265313a2d7..478d1d9a1a931c97d69406074df15667ecb403b6 100644 (file)
        "in the LML package.")
 
     (h2 "Examples")
-    (table
-     (tbody :border 1
+    (table :border 1 :cellpadding 3
+     (tbody
       (tr
-       (td :colspan 2 :style "color:000;background-color:ccc;font-weight:bold;" "Iteration"))
+       (td :colspan 2 :style "color:#000;background-color:#ccc;font-weight:bold;" "Iteration"))
       (tr
        (td 
        (pre
-"\"The square of the first five integers are\"
-  (loop as x from 1 to 5 
-      doing
-      (lml-print \" ~D\" (* x x)))"))
+"(i \"The square of the first five integers are)\"
+ (b
+   (loop as x from 1 to 5 
+     doing
+     (lml-print \" ~D\" (* x x))))"))
        (td
-       (loop as x from 1 to 5 
-             doing
-             (lml-print " ~D" (* x x)))))
+       (i "The square of the first five integers are")
+       (b
+        (loop as x from 1 to 5 
+              doing
+              (lml-print " ~D" (* x x))))))
       ))))