Lecture overview -- Keyboard shortcut: 'u'  Previous page: Recipe abstractions on top of HTML -- Keyboard shortcut: 'p'  Next page: Recipe datastructure (2) -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  slide -- Keyboard shortcut: 't'  Help page about these notes  Alphabetic index  Course home  Page 18 : 30
XML Processing in LAML
Recipe datastructure (1)

Representing recipes as lists in Scheme

   '(recipe
      "Pita Bread"
      (("dry yeast" "1.5" "tsp")
       ("water" "1" "cup")
       ("..." "1" "..."))
      ("Dissolve the yeast"
       "Add honey, folur and salt" "..."))  

A recipe list structure.