Back to notes
Keyboard shortcut: 'u' 

(load (string-append laml-dir "laml.scm"))

(style "demo-quiz")

(quiz
  (list
    (quiz-entry
      (question-formulation "What is programmatic WWW authoring?")
      (answers
        (list
          (answer 
            (answer-formulation "Authoring for programmers")
            (answer-correctness 0)
            (answer-clarification
              "Using programmatic authoring the document source is a program"))
          (answer 
            (answer-formulation "Authoring by means of program development")
            (answer-correctness 100)
            (answer-clarification "The source of each WWW document is program")))))

    (quiz-entry
      (question-formulation "What is LAML?")
      (answers
        (list
          (answer 
            (answer-formulation "A markup language in the SGML family")
            (answer-correctness 0)
            (answer-clarification "LAML is a markup language using Lisp syntax"))
          (answer 
            (answer-formulation "A set of Scheme libraries for textual markup purposes")
            (answer-correctness 90)
            (answer-clarification
              "In addition there are various tools in the LAML package"))
          (answer 
            (answer-formulation "A Lisp abstracted markup language")
            (answer-correctness 100)
            (answer-clarification "The name covers document styles, libraries and tools")))))
   )
)