Play audio slide show -- Keyboard shortcut: 'x'  Lecture overview -- Keyboard shortcut: 'u'  Previous page: Simple web-related functions (1) -- Keyboard shortcut: 'p'  Next page: Function exercises -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Annotated slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Alphabetic index  Help page about these notes  Course home      Expressions, Types, and Functions - slide 45 : 46

Simple web-related functions (2)
(define (indent-pixels p . contents)
  (table 'border "0"
   (tbody
     (tr 
      (td 'width (as-string p) "")
      (td 'width "*" contents)))))
indent-pixels-2.laml
An alternative version of theindent-pixel function.
indent-pixels-2.laml
A sample application of indent-pixel with some initial LAML context (software loading).