Lecture overview
Keyboard shortcut: 'u'  Previous slide in this lecture
Keyboard shortcut: 'p'  Next slide in this lecture
Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  Annotated slide
Keyboard shortcut: 't'  Alphabetic index  Help page about these notes  Course home    html4-ex1-abstractedSlide 11 : 26

An abstracted version 

(load "html4-extended-loading-stuff.scm")

(html-write
 (html-page 
   "Another LAML Example"
  
   (table-by-rows 1
     (row        ""               "Germany"   "Denmark"   "USA")
     (row        "Currency"       "DMark"     "Kroner"    "Dollar")
     (row        "Prime minister" "Schröder"  "Rasmussen" "-")
     (row        "President"      "??"        "-"         "Clinton")
   )

   (p)

   (a-tag "../goerlitz.html" "Top level lecture page")
  )
)
 

includes/html4-extended-loading-stuff.scmThe loading stuff used by the abstracted LAML example above.
 

Go to exerciseA tabular function
 

Go to exerciseA tabular list of input