Play audio slide show -- Keyboard shortcut: 'x'  Back to slide -- Keyboard shortcut: 'u'                meta-lecture-notes.laml - The LAML source of this page.Slide 23 : 38
Program 1

(note-page 'id "language-syntax"
  (title (main-text "Language Syntax")
         (annotation "An illustration of the Language Syntax clause")
  )

  (language-syntax
   (main-text
    (read-text-file (in-startup-directory "includes/if-then-else-syntax")))
   (annotation
    "This is the syntax of a Scheme conditional expression ala if-then-else" )
  )

  (source-program
   'src "meta-lecture-notes.laml"
   'from-mark "(note-page 'id \"language-syntax\""
   'to-mark end-mark 
   'slide-mode "external"
   'book-mode "inline"
   (color-decorations
   )
   (main-text
    "The LAML source of this page")
  )

  (cross-references
   (internet-reference 'href (man-entry "language-syntax")
   (main-text "Manual entry")))

) ; end note-page